public function run()
 {
     DB::table('users')->delete();
     User::create(array('username' => 'auntieDot', 'password' => Hash::make('root')));
     USer::create(array('username' => 'cortana', 'password' => Hash::make('root')));
 }