/** * Run the database seeds. */ public function run() { Model::unguard(); Member::truncate(); $this->call('MemberTableSeeder'); Model::reguard(); }