chore: change site_configs.value to text (#13036)

* chore: change `site_configs.value` to `text`

* `make gen`
This commit is contained in:
Kayla Washburn-Love
2024-04-22 17:25:36 -06:00
committed by GitHub
parent d3f3ace220
commit fab5591cf6
3 changed files with 3 additions and 1 deletions

View File

@ -695,7 +695,7 @@ CREATE TABLE replicas (
CREATE TABLE site_configs (
key character varying(256) NOT NULL,
value character varying(8192) NOT NULL
value text NOT NULL
);
CREATE TABLE tailnet_agents (

View File

@ -0,0 +1 @@
ALTER TABLE "site_configs" ALTER COLUMN "value" TYPE character varying(8192);

View File

@ -0,0 +1 @@
ALTER TABLE "site_configs" ALTER COLUMN "value" TYPE text;