This commit is contained in:
kokopi
2026-03-08 19:40:53 +09:00
commit 16bc00632d
67 changed files with 2476 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CREATE TABLE `tickets` (
`id` integer PRIMARY KEY NOT NULL,
`subject` text NOT NULL,
`description` text DEFAULT '' NOT NULL,
`status` text DEFAULT 'open' NOT NULL,
`createdAt` text NOT NULL
);