saucy/db/migrate/20220624134509_add_ifthenpa...

9 lines
205 B
Ruby
Raw Permalink Normal View History

2022-06-25 12:48:46 +00:00
class AddIfthenpayLinksToMember < ActiveRecord::Migration[7.0]
def change
change_table :members do |t|
t.string :regular_ifthenpay_link
t.string :reduced_ifthenpay_link
end
end
end