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