ente/server/migrations/4_update_subscriptions_schema.up.sql
2024-03-01 13:37:01 +05:30

7 lines
261 B
SQL

ALTER TABLE subscriptions
ADD COLUMN product_id TEXT NOT NULL,
ADD COLUMN payment_provider TEXT NOT NULL,
ADD COLUMN latest_verification_data TEXT NOT NULL;
CREATE INDEX IF NOT EXISTS subscriptions_expiry_time_index ON subscriptions (expiry_time);