1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20221229094334_create_cart_item_free_extension.rb

15 lines
504 B
Ruby
Raw Normal View History

2022-12-28 17:51:27 +01:00
# frozen_string_literal: true
# From this migration, we save the pending free-extensions of subscriptions in database, instead of just creating them on the fly
class CreateCartItemFreeExtension < ActiveRecord::Migration[5.2]
def change
create_table :cart_item_free_extensions do |t|
t.references :subscription, foreign_key: true
t.datetime :new_expiration_date
t.references :customer_profile, foreign_key: { to_table: 'invoicing_profiles' }
t.timestamps
end
end
end