Remove the schedule table from the database schema to streamline the overall structure and eliminate outdated components.

This commit is contained in:
Mauricio Siu 2025-05-03 09:40:18 -06:00
parent 9277427153
commit b2d938d2fc

View File

@ -1,8 +0,0 @@
CREATE TABLE IF NOT EXISTS "schedule" (
"scheduleId" text PRIMARY KEY NOT NULL,
"name" text NOT NULL,
"cronExpression" text NOT NULL,
"command" text NOT NULL,
"applicationId" text NOT NULL REFERENCES "application"("applicationId") ON DELETE CASCADE,
"createdAt" text NOT NULL
);