mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
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 |