sqm-dashboards/db/migrate/20250327205800_create_housings.rb

9 lines
165 B
Ruby

class CreateHousings < ActiveRecord::Migration[8.0]
def change
create_table :housings do |t|
t.string :designation
t.timestamps
end
end
end