discourse/db/migrate/20140804072504_views_to_top...

12 lines
290 B
Ruby

class ViewsToTopicViews < ActiveRecord::Migration
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