Moved all old code for Laravel 5.

This commit is contained in:
James Cole
2015-02-06 04:27:37 +01:00
parent a4b3bf3ef4
commit d16015d625
439 changed files with 19 additions and 33123 deletions

View File

@@ -1,9 +0,0 @@
<?php
$db = realpath(__DIR__ . '/_data') . '/db.sqlite';
$dump = realpath(__DIR__ . '/_data') . '/dump.sql';
if (!file_exists($db)) {
$out = [];
exec('touch ' . $db);
exec('php artisan migrate --seed --env=testing', $out);
exec('sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql', $out);
}