11 lines
280 B
Ruby
11 lines
280 B
Ruby
|
class AddMissingIdColumns < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :category_featured_topics, :id, :primary_key
|
||
|
add_column :topic_users, :id, :primary_key
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :category_featured_topics, :id
|
||
|
remove_column :topic_users, :id
|
||
|
end
|
||
|
end
|