mirror of
https://github.com/EdiFarcas/Giveaway-app.git
synced 2026-06-22 09:00:58 +03:00
11 lines
294 B
SQL
11 lines
294 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `weight` on the `Entry` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Entry" DROP COLUMN "weight",
|
|
ADD COLUMN "acive" BOOLEAN NOT NULL DEFAULT true,
|
|
ADD COLUMN "pastValue" INTEGER NOT NULL DEFAULT 0;
|