Files
TaxHacker_s23/prisma/migrations/20250424103453_stripe_customer_id/migration.sql
2025-04-24 15:27:44 +02:00

11 lines
297 B
SQL

/*
Warnings:
- You are about to drop the column `token_balance` on the `users` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "users" DROP COLUMN "token_balance",
ADD COLUMN "ai_balance" INTEGER NOT NULL DEFAULT 0,
ADD COLUMN "stripe_customer_id" TEXT;