discourse/db/migrate/20120629182637_create_incoming_links.rb

16 lines
509 B
Ruby
Raw Normal View History

2013-02-05 13:16:51 -06:00
class CreateIncomingLinks < ActiveRecord::Migration
def change
create_table :incoming_links do |t|
t.integer :site_id, null: false
t.string :url, limit: 1000, null: false
2013-02-25 10:42:20 -06:00
t.string :referer, limit: 1000, null: false
2013-02-05 13:16:51 -06:00
t.string :domain, limit: 100, null: false
t.integer :forum_thread_id, null: true
t.integer :post_number, null: true
t.timestamps
end
add_index :incoming_links, [:site_id, :forum_thread_id, :post_number], name: 'incoming_index'
end
end