Files
BD2PS/database/migrations/074_event_schedule_info.sql
yoncodes e58fd190b4 pushing
2025-10-28 21:21:28 -04:00

11 lines
269 B
SQL

CREATE TABLE "EventScheduleInfo" (
"Index" INTEGER PRIMARY KEY AUTOINCREMENT,
"Uid" BIGINT NOT NULL,
"Id" INTEGER,
"EventType" TEXT,
"EventId" INTEGER,
"EventSubId" INTEGER,
"StartDate" BIGINT,
"EndDate" BIGINT,
"IsActive" INTEGER
);