5 lines
111 B
Ruby
5 lines
111 B
Ruby
class AddBicToUsers < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :users, :bic, :string
|
|
end
|
|
end
|