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
9 lines
220 B
SQL
9 lines
220 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `name` to the `Task` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Task" ADD COLUMN "name" TEXT NOT NULL;
|