foodsoft/db/migrate/20230822120005_add_customer_number_to_group.rb

6 lines
149 B
Ruby
Raw Normal View History

2023-08-11 15:01:22 +02:00
class AddCustomerNumberToGroup < ActiveRecord::Migration[7.0]
def change
add_column :groups, :customer_number, :string, unique: true
end
end