Skip to content

Commit c30dc64

Browse files
committed
Made emails unique
1 parent d6d9b96 commit c30dc64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/database/seeds/UsersTableSeeder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ public function run()
99
$users = [
1010
[
1111
'username' => 'msurguy',
12-
'email' => 'user@example.com',
12+
'email' => 'user1@example.com',
1313
'password' => Hash::make('password'),
1414
'is_admin' => '1'
1515
],
1616
[
1717
'username' => 'stidges',
18-
'email' => 'user@example.com',
18+
'email' => 'user2@example.com',
1919
'password' => Hash::make('password'),
2020
'is_admin' => '1'
2121
]

0 commit comments

Comments
 (0)