mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
11 lines
297 B
SQL
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;
|