mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-28 19:24:10 +08:00
12 lines
343 B
Ruby
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
|