Files
2025-05-05 21:42:29 +03:00

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;