Files
Vault/prisma/migrations/20251124142723_update_progress/migration.sql
T
twotalesanimation 81ad7e4ea9 Initial commit
2026-06-11 10:46:09 +02:00

17 lines
535 B
SQL

/*
Warnings:
- You are about to drop the column `seconds` on the `VideoProgress` table. All the data in the column will be lost.
*/
-- DropIndex
DROP INDEX "VideoProgress_videoId_idx";
-- AlterTable
ALTER TABLE "VideoProgress" DROP COLUMN "seconds",
ADD COLUMN "completed" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
ADD COLUMN "lastPos" INTEGER,
ADD COLUMN "percent" INTEGER NOT NULL DEFAULT 0,
ADD COLUMN "watchedSec" INTEGER NOT NULL DEFAULT 0;