Change the user seeder for the test account

This commit is contained in:
James Brooks
2015-01-16 10:34:03 +00:00
parent 1d799c5399
commit 9efb1f39da

View File

@@ -17,16 +17,10 @@ class UsersTableSeeder extends Seeder
$users = [
[
"username" => "admin",
"password" => "admin",
"email" => "admin@example.com",
"level" => "1",
],
[
"username" => "user",
"password" => "user",
"email" => "user@example.com"
],
"username" => "test",
"password" => "test123",
"email" => "test@test.com",
]
];
foreach ($users as $user) {