2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreateSearchLogs < ActiveRecord::Migration[4.2]
|
2017-07-13 13:34:31 -04:00
|
|
|
def change
|
|
|
|
create_table :search_logs do |t|
|
|
|
|
t.string :term, null: false
|
|
|
|
t.integer :user_id, null: true
|
|
|
|
t.inet :ip_address, null: false
|
|
|
|
t.integer :clicked_topic_id, null: true
|
|
|
|
t.integer :search_type, null: false
|
|
|
|
t.datetime :created_at, null: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|