mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
17 lines
512 B
Ruby
17 lines
512 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateViews < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :views, id: false do |t|
|
|
t.integer :parent_id, null: false
|
|
t.string :parent_type, limit: 50, null: false
|
|
t.integer :ip, limit: 8, null: false
|
|
t.datetime :viewed_at, null: false
|
|
t.integer :user_id, null: true
|
|
end
|
|
|
|
add_index :views, %i[parent_id parent_type]
|
|
add_index :views, %i[parent_id parent_type ip viewed_at], unique: true, name: "unique_views"
|
|
end
|
|
end
|