1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20170713164357_create_search_logs.rb

13 lines
364 B
Ruby
Raw Normal View History

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