1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00
fab-manager/db/migrate/20201027145651_add_stp_price_id_to_plan.rb

10 lines
263 B
Ruby
Raw Normal View History

2020-10-27 16:03:20 +01:00
# 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