diff options
author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-29 13:26:09 +0200 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-30 23:23:18 +0200 |
commit | 083f1e2f13e546e973cf7304adb00c81b1423ba6 (patch) | |
tree | 8b65ab9d047603c3c7380d9049a703411164bb86 /db/fixtures | |
parent | 2b88c9cd15d79ff755cea501d5d6fb511538de73 (diff) | |
download | gitlab-ce-083f1e2f13e546e973cf7304adb00c81b1423ba6.tar.gz |
Fix dev user seed: multiple ID was used twice.
Diffstat (limited to 'db/fixtures')
-rw-r--r-- | db/fixtures/development/05_users.rb | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/db/fixtures/development/05_users.rb b/db/fixtures/development/05_users.rb index c263dd232af..b697f58d4ef 100644 --- a/db/fixtures/development/05_users.rb +++ b/db/fixtures/development/05_users.rb @@ -16,14 +16,13 @@ Gitlab::Seeder.quiet do (1..5).each do |i| begin - User.seed(:id, [ - id: i + 10, - username: "user#{i}", - name: "User #{i}", - email: "user#{i}@example.com", - confirmed_at: DateTime.now, - password: '12345678' - ]) + User.seed do |s| + s.username = "user#{i}" + s.name = "User #{i}" + s.email = "user#{i}@example.com" + s.confirmed_at = DateTime.now + s.password = '12345678' + end print '.' rescue ActiveRecord::RecordNotSaved print 'F' |