Exemplo n.º 1
0
 /**
  * Truncate all tables.
  */
 protected function seedInit()
 {
     Owner::truncate();
     User::truncate();
     Project::truncate();
     Member::truncate();
     Issue::truncate();
     Comment::truncate();
     Moment::truncate();
     Setting::truncate();
     Subscriber::truncate();
 }
Exemplo n.º 2
0
 /**
  * Seed the users table.
  *
  * @return void
  */
 protected function seedUsers()
 {
     $users = [['username' => 'test', 'password' => 'test123', 'email' => '*****@*****.**', 'level' => 1, 'api_key' => '9yMHsdioQosnyVK4iCVR']];
     User::truncate();
     foreach ($users as $user) {
         User::create($user);
     }
 }