mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 11:04:14 +02:00
15 lines
571 B
SQL
15 lines
571 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `balance` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `lastDaily` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `level` on the `User` table. All the data in the column will be lost.
|
|
- You are about to drop the column `xp` on the `User` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "User" DROP COLUMN "balance",
|
|
DROP COLUMN "lastDaily",
|
|
DROP COLUMN "level",
|
|
DROP COLUMN "xp";
|