mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
chore: change site_configs.value to text (#13036)
* chore: change `site_configs.value` to `text` * `make gen`
This commit is contained in:
committed by
GitHub
parent
d3f3ace220
commit
fab5591cf6
Generated
+1
-1
@@ -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 (
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE "site_configs" ALTER COLUMN "value" TYPE character varying(8192);
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE "site_configs" ALTER COLUMN "value" TYPE text;
|
||||
Reference in New Issue
Block a user