added basic proxyTargets schema

This commit is contained in:
Milo Schwartz
2024-09-27 22:11:37 -04:00
parent 3fea8be65f
commit 6c91415de4
4 changed files with 99 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
CREATE TABLE `proxyTargets` (
`id` text PRIMARY KEY NOT NULL,
`target` text NOT NULL,
`rule` text NOT NULL,
`entryPoint` text NOT NULL,
`enabled` integer DEFAULT 1 NOT NULL
);
--> statement-breakpoint
CREATE UNIQUE INDEX `proxyTargets_id_unique` ON `proxyTargets` (`id`);