added stripe_plan to the insert statements

pull/77/head
Chris Veilleux 2019-03-08 17:27:05 -06:00 committed by Matheus Lima
parent 428fc2aad8
commit 885d36b34e
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
INSERT INTO
account.membership (type, rate, rate_period)
account.membership (type, rate, rate_period, stripe_plan)
VALUES
('Monthly Membership', 1.99, 'month'),
('Yearly Membership', 19.99, 'year')
('Monthly Membership', 1.99, 'month', 'monthly_premium'),
('Yearly Membership', 19.99, 'year', 'mycroft_ai_premium_annual_1999')
;