discourse/db/migrate/20170713164357_create_searc...

13 lines
359 B
Ruby

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