dnote/pkg/server/database/migrations/20200522170529-remove-billing-columns.sql
2020-05-22 17:19:10 +10:00

9 lines
236 B
SQL

-- remove-billing-columns.sql drops billing related columns that are now obsolete.
-- +migrate Up
ALTER TABLE users DROP COLUMN IF EXISTS stripe_customer_id;
ALTER TABLE users DROP COLUMN IF EXISTS billing_country;
-- +migrate Down