foodsoft/db/migrate/20231109125021_add_bic_to_users.rb

6 lines
111 B
Ruby
Raw Normal View History

class AddBicToUsers < ActiveRecord::Migration[7.0]
def change
add_column :users, :bic, :string
end
end