2013-02-05 14:16:51 -05:00
|
|
|
class CreateForumThreadLinkClicks < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :forum_thread_link_clicks do |t|
|
|
|
|
t.references :forum_thread_link, null: false
|
|
|
|
t.references :user, null: true
|
2013-02-25 11:42:20 -05:00
|
|
|
t.integer :ip, null: false, limit: 8
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
add_column :forum_thread_links, :clicks, :integer, default: 0, null: false
|
2013-07-03 15:07:13 -04:00
|
|
|
add_index :forum_thread_link_clicks, :forum_thread_link_id, name: :by_link
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|