mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
22 lines
334 B
PHP
22 lines
334 B
PHP
|
<?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::class);
|
||
|
|
||
|
Model::reguard();
|
||
|
}
|
||
|
}
|