2017-08-31 00:06:56 -04:00
|
|
|
class CreateTopicEmbeds < ActiveRecord::Migration[4.2]
|
2013-12-31 14:37:43 -05:00
|
|
|
def change
|
|
|
|
create_table :topic_embeds, force: true do |t|
|
|
|
|
t.integer :topic_id, null: false
|
|
|
|
t.integer :post_id, null: false
|
|
|
|
t.string :embed_url, null: false
|
|
|
|
t.string :content_sha1, null: false, limit: 40
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :topic_embeds, :embed_url, unique: true
|
|
|
|
end
|
|
|
|
end
|