class CreateBeds < ActiveRecord::Migration[8.0] def change create_table :beds do |t| t.integer :location, null: false t.timestamps end add_index :beds, :location, unique: true end end