Remove stripe index creation

This commit is contained in:
Joey Yakimowich-Payne 2026-01-22 07:56:33 -07:00
commit c36095ffc5
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
3 changed files with 404 additions and 2 deletions

View file

@ -85,7 +85,6 @@ CREATE TABLE IF NOT EXISTS payments (
);
CREATE INDEX IF NOT EXISTS idx_payments_user ON payments(user_id);
CREATE INDEX IF NOT EXISTS idx_users_stripe_customer ON users(stripe_customer_id);
CREATE TABLE IF NOT EXISTS meta (
meta_key TEXT PRIMARY KEY,