blob: 9141bd3cf756d12e31702fac372f4a5b1bd38171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateTargetAllocations < ActiveRecord::Migration[8.0]
def change
create_table :target_allocations do |t|
t.references :target, null: false, foreign_key: true
t.references :nutrient_profile, null: false, foreign_key: true
t.decimal :percentage
t.timestamps
end
end
end
|