mirror of
https://github.com/dnote/dnote
synced 2026-03-17 07:55:50 +01:00
9 lines
236 B
SQL
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
|
|
|