1
0
mirror of synced 2026-08-05 22:56:55 +00:00

add new table

This commit is contained in:
Rimian Perkins
2019-12-03 13:03:10 +11:00
parent 6d71d26574
commit bdba7686d3
3 changed files with 12 additions and 2 deletions
@@ -0,0 +1,10 @@
class CreateSubscriptionsCustomers < ActiveRecord::Migration[6.0]
def change
create_table :discourse_subscriptions_customers do |t|
t.string :customer_id, null: false
t.string :product_id
t.references :user, foreign_key: true
t.timestamps
end
end
end