class CreateBeds < ActiveRecord::Migration[6.0] def change create_table :beds do |t| t.string :bed_number t.string :room_number t.references :care_centre, null: false, foreign_key: true t.references :patient, null: true, foreign_key: true t.timestamps end end end