1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-06-21 03:04:21 +00:00
Files
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
not-gwent-online/site/server/database/seeds/DatabaseSeeder.php
2015-06-19 18:50:05 +02:00

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();
}
}