summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-06-29 08:14:13 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-06-29 08:14:13 +0000
commitfa88a592fd19f28b0b2ed0da0b2ee3dd5aba1d4e (patch)
tree8eb5d82ea3405f32afb6d4fbc1a903bf141c92fe /db
parent75a5dbd01dd4c57b96dd1fa322bc4d9ec9f865d1 (diff)
downloadredmine-fa88a592fd19f28b0b2ed0da0b2ee3dd5aba1d4e.tar.gz
redmine-fa88a592fd19f28b0b2ed0da0b2ee3dd5aba1d4e.zip
Fixed #1545: migration on fresh install fails (broken by r1592).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1595 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r--db/migrate/001_setup.rb19
1 files changed, 11 insertions, 8 deletions
diff --git a/db/migrate/001_setup.rb b/db/migrate/001_setup.rb
index 1160dd5ef..13960ba8c 100644
--- a/db/migrate/001_setup.rb
+++ b/db/migrate/001_setup.rb
@@ -16,7 +16,8 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
class Setup < ActiveRecord::Migration
-
+
+ class User < ActiveRecord::Base; end
# model removed
class Permission < ActiveRecord::Base; end
@@ -284,13 +285,15 @@ class Setup < ActiveRecord::Migration
Permission.create :controller => "versions", :action => "destroy_file", :description => "button_delete", :sort => 1322
# create default administrator account
- user = User.create :firstname => "Redmine", :lastname => "Admin", :mail => "admin@somenet.foo", :mail_notification => true, :language => "en"
- user.login = "admin"
- user.password = "admin"
- user.admin = true
- user.save
-
-
+ user = User.create :login => "admin",
+ :hashed_password => "d033e22ae348aeb5660fc2140aec35850c4da997",
+ :admin => true,
+ :firstname => "Redmine",
+ :lastname => "Admin",
+ :mail => "admin@somenet.foo",
+ :mail_notification => true,
+ :language => "en",
+ :status => 1
end
def self.down