mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 02:09:54 +08:00
12 lines
295 B
Ruby
12 lines
295 B
Ruby
class ViewsToTopicViews < ActiveRecord::Migration[4.2]
|
|
def change
|
|
remove_column :views, :parent_type
|
|
rename_column :views, :parent_id, :topic_id
|
|
|
|
rename_table :views, :topic_views
|
|
|
|
add_index :topic_views, [:topic_id]
|
|
add_index :topic_views, [:user_id, :topic_id]
|
|
end
|
|
end
|