Skip to content

Commit

Permalink
fix the seed issue of a blank last login --> http://cl.ly/image/1F3I3…
Browse files Browse the repository at this point in the history
  • Loading branch information
djekl committed Aug 31, 2013
1 parent a2110fc commit 641f5b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Davzie/LaravelBootstrap/Seeds/UserTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ public function run()
'first_name' => Config::get('laravel-bootstrap::setup.first-name'),
'last_name' => Config::get('laravel-bootstrap::setup.last-name'),
'password' => Hash::make( Config::get('laravel-bootstrap::setup.password') ),
'last_login' => date('Y-m-d H:i:s'),
]
];
DB::table('users')->insert($types);
$this->command->info('User Table Seeded');

}

}
}

0 comments on commit 641f5b1

Please sign in to comment.