scinote-web/db/migrate/20150715142704_create_step_assets.rb
2016-02-12 16:52:43 +01:00

12 lines
327 B
Ruby

class CreateStepAssets < ActiveRecord::Migration
def change
create_table :step_assets do |t|
t.integer :step_id, null: false
t.integer :asset_id, null: false
end
add_foreign_key :step_assets, :steps
add_foreign_key :step_assets, :assets
add_index :step_assets, [:step_id, :asset_id]
end
end