discourse/db/migrate/20120828204624_create_post_...

11 lines
344 B
Ruby
Raw Normal View History

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