summaryrefslogtreecommitdiff
path: root/db/fixtures/development/001_admin.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/fixtures/development/001_admin.rb')
-rw-r--r--db/fixtures/development/001_admin.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/db/fixtures/development/001_admin.rb b/db/fixtures/development/001_admin.rb
index c857f6bcb3f..51939e8ee9c 100644
--- a/db/fixtures/development/001_admin.rb
+++ b/db/fixtures/development/001_admin.rb
@@ -1,9 +1,10 @@
unless User.count > 0
admin = User.create(
- :email => "admin@local.host",
- :name => "Administrator",
- :password => "5iveL!fe",
- :password_confirmation => "5iveL!fe"
+ email: "admin@local.host",
+ name: "Administrator",
+ username: 'root',
+ password: "5iveL!fe",
+ password_confirmation: "5iveL!fe"
)
admin.projects_limit = 10000