feat: add 1.0 migration page (#2224)

This commit is contained in:
Meier Lukas
2024-12-17 18:39:57 +01:00
committed by GitHub
parent 3737543766
commit d63c610cf5
15 changed files with 913 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
CREATE TABLE `migrate_token` (
`id` text PRIMARY KEY NOT NULL,
`token` text NOT NULL,
`boards` integer NOT NULL,
`users` integer NOT NULL,
`integrations` integer NOT NULL,
`expires` integer NOT NULL
);
--> statement-breakpoint
CREATE UNIQUE INDEX `migrate_token_token_unique` ON `migrate_token` (`token`);