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