I have created the following migrationg by using:
“ruby script/generate migration AddFirst”
But when I run: “rake migrate” it doesn’t add these two records. I don’t
get
any errors. The schema_info table is created and schema.rb is updated
with
“:version => 1”.
Can I not create records this way? When I load up script/console and put
in
the same code, it will create the records just fine. The Account and
User
model are already created.
/db/migrate/001_add_first.rb
class AddFirst < ActiveRecord::Migration
def self.up
Account.create :name => “Company Inc.”, :domain => “localhost”,
:subdomain => “”
User.create :name => “Administrator”, :username => “admin”,
:password =>
“1234”, :email => “[email protected]”, :account_id => 1
end
def self.down
end
end