Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Зуев Егор
/
wiki.dev
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Authored by
Dan Brown
2016-02-01 18:30:50 +0000
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Commit
4bb7f0613fd3bf672ca8c3042ad08e9b7ace5458
4bb7f061
1 parent
080acf0a
Fixed issue with initial user not having a password
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
database/migrations/2014_10_12_000000_create_users_table.php
database/migrations/2014_10_12_000000_create_users_table.php
View file @
4bb7f06
...
...
@@ -21,10 +21,10 @@ class CreateUsersTable extends Migration
$table
->
timestamps
();
});
\BookStack\User
::
c
reate
([
\BookStack\User
::
forceC
reate
([
'name'
=>
'Admin'
,
'email'
=>
'admin@admin.com'
,
'password'
=>
\Illuminate\Support\Facades\Hash
::
make
(
'password'
)
'password'
=>
bcrypt
(
'password'
)
]);
}
...
...
Please
register
or
sign in
to post a comment