blob: 488baaaad9041d4ddaea8248787e055776171413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateScores < ActiveRecord::Migration[8.0]
def change
create_table :scores do |t|
t.references :tartiflette, null: false, foreign_key: true
t.references :scoring_criterium, null: false, foreign_key: true
t.integer :value
t.timestamps
end
end
end
|