farmitry_hvac/db/migrate/20250416131430_create_contr...

11 lines
192 B
Ruby

class CreateControllers < ActiveRecord::Migration[8.0]
def change
create_table :controllers do |t|
t.string :name
t.integer :station_id
t.timestamps
end
end
end