diff --git a/tests/migrations/2013_07_26_182750_create_users_table.php b/tests/migrations/2013_07_26_182750_create_users_table.php index b1b1f99..402e1be 100644 --- a/tests/migrations/2013_07_26_182750_create_users_table.php +++ b/tests/migrations/2013_07_26_182750_create_users_table.php @@ -1,5 +1,6 @@ timestamps(); }); + $now = Carbon::now(); + DB::table('users')->insert(array( - 'email' => 'hello@orchestraplatform.com', - 'password' => Hash::make('123'), + 'email' => 'hello@orchestraplatform.com', + 'password' => Hash::make('123'), + 'created_at' => $now, + 'updated_at' => $now, )); }