scinote-web/db/migrate/20150717085043_create_step_tables.rb
2017-06-30 10:23:28 +02:00

12 lines
346 B
Ruby

class CreateStepTables < ActiveRecord::Migration[4.2]
def change
create_table :step_tables do |t|
t.integer :step_id, null: false
t.integer :table_id, null: false
end
add_foreign_key :step_tables, :steps
add_foreign_key :step_tables, :tables
add_index :step_tables, [:step_id, :table_id], unique: true
end
end