mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-30 19:52:20 +01:00
10 lines
263 B
Ruby
10 lines
263 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Save the id of the Stripe::Price associated with the current plan.
|
|
# This is used for payment schedules
|
|
class AddStpPriceIdToPlan < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :plans, :stp_price_id, :string
|
|
end
|
|
end
|