mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-08 05:56:38 +00:00
9 lines
276 B
SQL
9 lines
276 B
SQL
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`); |