Changeset 1817

Show
Ignore:
Timestamp:
09/22/08 10:13:07 (4 months ago)
Author:
dbryson
Message:


Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • community_hive/trunk/community_hive_web/db/migrate/004_create_default_account.rb

    r1620 r1817  
    44  def self.up 
    55    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') 
    811  end 
    912