]> source.dussan.org Git - redmine.git/commitdiff
Default admin user may not be crated in Redmine 3.0 (#18804).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 7 Feb 2015 09:04:37 +0000 (09:04 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 7 Feb 2015 09:04:37 +0000 (09:04 +0000)
Patch by OndÅ™ej Ezr.

git-svn-id: http://svn.redmine.org/redmine/trunk@13968 e93f8b46-1217-0410-a6f0-8f06a7374b81

db/migrate/001_setup.rb

index 3cea13591bf3d19bf303d1d884a4455652f6c960..1af42a783c41c91b010aa250e99d38be54416358 100644 (file)
@@ -288,14 +288,17 @@ class Setup < ActiveRecord::Migration
     Permission.create :controller => "versions", :action => "destroy_file", :description => "button_delete", :sort => 1322
 
     # create default administrator account
-    user = User.create :login => "admin",
-                       :hashed_password => "d033e22ae348aeb5660fc2140aec35850c4da997",
-                       :admin => true,
-                       :firstname => "Redmine",
-                       :lastname => "Admin",
-                       :mail => "admin@example.net",
-                       :mail_notification => true,
-                       :status => 1
+    user = User.new :firstname => "Redmine",
+                    :lastname => "Admin",
+                    :mail => "admin@example.net",
+                    :mail_notification => 'all',
+                    :status => 1
+    user.login = 'admin'
+    user.hashed_password = "d033e22ae348aeb5660fc2140aec35850c4da997"
+    user.admin = true
+    user.save
+
+
   end
 
   def self.down