You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 13, 2022. It is now read-only.
class CreateSnakeCaseTableA < ActiveRecord::Migration
def up
create_table :snake_case_table_a, :force => true do |t|
t.string :name
end
end
def down
drop_tabe :snake_case_table_a
end
end
and
class CreateSnakeCaseTableB < ActiveRecord::Migration
def up
create_table :snake_case_table_b, :force => true do |t|
t.integer :snake_case_table_a_id
t.string :name
end
end
def down
drop_tabe :snake_case_table_a
end
end
Second Issue: (Rails 3.2.12)
Migration Files:
and
rake db:migrate
yields:The text was updated successfully, but these errors were encountered: