mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-02 00:36:38 +00:00
added basic proxyTargets schema
This commit is contained in:
9
server/migrations/0000_petite_zarda.sql
Normal file
9
server/migrations/0000_petite_zarda.sql
Normal 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`);
|
||||
Reference in New Issue
Block a user