Displaying 1 result from an estimated 1 matches for "addfoot".
Did you mean:
addfoo
2006 Jan 19
3
problems with migrations in sql server
...a SQL Server database who might be able to
lend me a hand? I''ve used migrations with MySql in the past and haven''t
run into any issues so forgive When I run rake migrate nothing is actually
getting updated in my database. I created a migration using
./script/generate migration AddFooTable and updated the migration to look as
follows:
class AddFooTable < ActiveRecord::Migration
def self.up
create_table "Foo" do |t|
t.column "Name", :string, :limit => 50
end
end
def self.down
drop_table "Foo"
end
end
When I...