Changeset 1817
- Timestamp:
- 09/22/08 10:13:07 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
community_hive/trunk/community_hive_web/db/migrate/004_create_default_account.rb
r1620 r1817 4 4 def self.up 5 5 down 6 dir = File.join(File.dirname(__FILE__),"initial_data") 7 Fixtures.create_fixtures(dir,"users") 6 User.create!(:login => 'admin', 7 :email => 'admin@mitre.org', 8 :org => 'MITRE', 9 :password => 'foobar1234', 10 :password_confirmation => 'foobar1234') 8 11 end 9 12
