Automatically generate database on first load
This commit is contained in:
parent
c3b571724b
commit
49b01bdb75
1 changed files with 2 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Artisan;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
|
@ -15,9 +16,8 @@ class AppServiceProvider extends ServiceProvider
|
|||
{
|
||||
if(!file_exists(database_path(env('DB_DATABASE')))) {
|
||||
// first time setup
|
||||
//die("No Database");
|
||||
touch(database_path(env('DB_DATABASE')));
|
||||
\Artisan::call('migrate', array('--path' => 'app/migrations', '--force' => true));
|
||||
Artisan::call('migrate', array('--path' => 'database/migrations', '--force' => true));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue