mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
10 lines
294 B
Ruby
10 lines
294 B
Ruby
# frozen_string_literal: true
|
|
|
|
# If a plan is marked as "monthly_payment", we can charge its subscriptions with a PaymentSchedule
|
|
# instead of a single Invoice
|
|
class AddMonthlyPaymentToPlan < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :plans, :monthly_payment, :boolean
|
|
end
|
|
end
|