Files
Giveaway-app/prisma/migrations/20250427120945_add_giveaway_update/migration.sql
T
Alexandru Eduard Farcas d8da8c839f Initial commit - project setup
2025-04-27 17:13:38 +03:00

11 lines
362 B
SQL

/*
Warnings:
- You are about to drop the column `value` on the `Giveaway` table. All the data in the column will be lost.
- Added the required column `prize` to the `Giveaway` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Giveaway" DROP COLUMN "value",
ADD COLUMN "prize" TEXT NOT NULL;