mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
cb0ecd9ff1
* cut down on storage of the work Topic, 3 times per row (in 2 indexes) * only store one view per user per topic * only store one view per ip per topic
11 lines
290 B
Ruby
11 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
|