mirror of
https://github.com/exane/not-gwent-online
synced 2025-06-21 03:04:21 +00:00
assets
client
public
server
site
client
public
server
app
bootstrap
config
database
factories
migrations
seeds
.gitkeep
DatabaseSeeder.php
.gitignore
storage
tests
.env.example
artisan
composer.json
composer.lock
phpspec.yml
phpunit.xml
server.php
test
.gitignore
gulpfile.js
package.json
22 lines
329 B
PHP
Executable File
22 lines
329 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Model::unguard();
|
|
|
|
// $this->call('UserTableSeeder');
|
|
|
|
Model::reguard();
|
|
}
|
|
}
|