Simplify internal props handling and telemetry.

This commit is contained in:
Andrey Antukh 2021-01-29 10:49:30 +01:00 committed by Hirunatan
parent fa852a1ab8
commit b44dfc2d9d
8 changed files with 144 additions and 71 deletions

View file

@ -0,0 +1,8 @@
CREATE TABLE server_prop (
id text PRIMARY KEY,
content jsonb
);
ALTER TABLE server_prop
ALTER COLUMN id SET STORAGE external,
ALTER COLUMN content SET STORAGE external;