Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddanbrown committed Feb 1, 2016
2 parents 148e172 + 4bb7f06 commit f784c03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/migrations/2014_10_12_000000_create_users_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ public function up()
$table->timestamps();
});

\BookStack\User::create([
\BookStack\User::forceCreate([
'name' => 'Admin',
'email' => '[email protected]',
'password' => \Illuminate\Support\Facades\Hash::make('password')
'password' => bcrypt('password')
]);
}

Expand Down

0 comments on commit f784c03

Please sign in to comment.