discourse/db/migrate/20120828204624_create_post_onebox_renders.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
375 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreatePostOneboxRenders < ActiveRecord::Migration[4.2]
2013-02-06 03:16:51 +08: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 23:48:36 +08:00
t.timestamps null: false
2013-02-06 03:16:51 +08:00
end
add_index :post_onebox_renders, [:post_id, :onebox_render_id], unique: true
end
end