mirror of
https://github.com/EdiFarcas/Giveaway-app.git
synced 2026-06-22 07:00:57 +03:00
11 lines
362 B
SQL
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;
|