Initial commit - project setup

This commit is contained in:
Alexandru Eduard Farcas
2025-04-27 17:13:38 +03:00
parent 5be661f41a
commit d8da8c839f
22 changed files with 1775 additions and 144 deletions
@@ -0,0 +1,10 @@
/*
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;