You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/db/migrate/20240924173209_add_name_to_...

7 lines
160 B

class AddNameToScale < ActiveRecord::Migration[7.1]
def change
add_column :scales, :name, :string
add_column :scales, :description, :string
end
end