mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +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
2
coderd/database/dump.sql
generated
2
coderd/database/dump.sql
generated
@ -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