Unguard all Eloquent attributes in seeder.

This commit is contained in:
Taylor Otwell
2013-03-28 11:20:48 -05:00
parent be16de2a2f
commit 77d748a145

View File

@@ -9,6 +9,8 @@ class DatabaseSeeder extends Seeder {
*/ */
public function run() public function run()
{ {
Eloquent::unguard();
// $this->call('UserTableSeeder'); // $this->call('UserTableSeeder');
} }