mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
12 lines
281 B
Ruby
12 lines
281 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
|