2017-08-31 00:06:56 -04:00
|
|
|
class CreatePostOneboxRenders < ActiveRecord::Migration[4.2]
|
2013-02-05 14:16:51 -05:00
|
|
|
def change
|
|
|
|
create_table :post_onebox_renders, id: false do |t|
|
|
|
|
t.references :post, null: false
|
|
|
|
t.references :onebox_render, null: false
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
add_index :post_onebox_renders, [:post_id, :onebox_render_id], unique: true
|
|
|
|
end
|
|
|
|
end
|