mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* feat: historical tasks in database, better scheduling, and unified API for accessing tasks * feat: new UI for everything * fix: add translations and fix formatting
15 lines
344 B
SQL
15 lines
344 B
SQL
-- CreateTable
|
|
CREATE TABLE "Task" (
|
|
"id" TEXT NOT NULL,
|
|
"taskGroup" TEXT NOT NULL,
|
|
"started" TIMESTAMP(3) NOT NULL,
|
|
"ended" TIMESTAMP(3) NOT NULL,
|
|
"success" BOOLEAN NOT NULL,
|
|
"error" JSONB,
|
|
"progress" DOUBLE PRECISION NOT NULL,
|
|
"log" TEXT[],
|
|
"acls" TEXT[],
|
|
|
|
CONSTRAINT "Task_pkey" PRIMARY KEY ("id")
|
|
);
|