fix user seeds
This commit is contained in:
parent
cbd82b92fe
commit
79431f8515
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ User.new({
|
|||
code: 'qwertyui',
|
||||
joinedwithcode: 'qwertyui',
|
||||
admin: 'false'
|
||||
}).save
|
||||
}).save(validate: false)
|
||||
|
||||
User.new({
|
||||
name: 'admin',
|
||||
|
@ -18,7 +18,7 @@ User.new({
|
|||
code: 'iuytrewq',
|
||||
joinedwithcode: 'iuytrewq',
|
||||
admin: 'true'
|
||||
}).save
|
||||
}).save(validate: false)
|
||||
## END USERS
|
||||
|
||||
## METACODES
|
||||
|
|
Loading…
Reference in a new issue