2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class CreateViews < ActiveRecord::Migration[4.2]
|
2013-02-06 03:16:51 +08:00
|
|
|
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
|
2013-02-26 00:42:20 +08:00
|
|
|
t.integer :user_id, null: true
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :views, [:parent_id, :parent_type]
|
|
|
|
add_index :views, [:parent_id, :parent_type, :ip, :viewed_at], unique: true, name: "unique_views"
|
|
|
|
end
|
|
|
|
end
|