Skip to content

Commit f784c03

Browse files
committed
Merge branch 'master' into release
2 parents 148e172 + 4bb7f06 commit f784c03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/migrations/2014_10_12_000000_create_users_table.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ public function up()
2121
$table->timestamps();
2222
});
2323

24-
\BookStack\User::create([
24+
\BookStack\User::forceCreate([
2525
'name' => 'Admin',
2626
'email' => '[email protected]',
27-
'password' => \Illuminate\Support\Facades\Hash::make('password')
27+
'password' => bcrypt('password')
2828
]);
2929
}
3030

0 commit comments

Comments
 (0)