mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-21 23:52:31 -05:00
Unguard and reguard the database during the seeding process
This commit is contained in:
parent
b6c1544013
commit
16b08b7ee1
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
|
@ -11,6 +12,7 @@ class DatabaseSeeder extends Seeder
|
|||
*/
|
||||
public function run()
|
||||
{
|
||||
|
||||
Model::unguard();
|
||||
Model::reguard();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue