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

12 lines
343 B
Ruby

class CreateResultTables < ActiveRecord::Migration
def change
create_table :result_tables do |t|
t.integer :result_id, null: false
t.integer :table_id, null: false
end
add_foreign_key :result_tables, :results
add_foreign_key :result_tables, :tables
add_index :result_tables, [:result_id, :table_id]
end
end