discourse-subscriptions/db/migrate/20191127233735_add_product_to_customer.rb
Rimian Perkins 1429bf116f rubocop
2019-11-28 19:51:03 +11:00

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