mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 17:49:24 +00:00
8 lines
178 B
Ruby
8 lines
178 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddProductToCustomer < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :discourse_patrons_customers, :product_id, :string
|
|
end
|
|
end
|