2014-11-26 21:31:12 +01:00
|
|
|
<?php
|
|
|
|
// This is global bootstrap for autoloading
|
2014-12-06 19:47:43 +01:00
|
|
|
$db = realpath(__DIR__ . '/_data') . '/testing.sqlite';
|
|
|
|
|
|
|
|
if (!file_exists($db)) {
|
|
|
|
exec('touch ' . $db);
|
|
|
|
exec('php artisan migrate --seed --env=testing');
|
|
|
|
}
|