9 lines
205 B
Ruby
9 lines
205 B
Ruby
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
|