mirror of
https://github.com/penpot/penpot.git
synced 2026-05-16 21:43:40 +00:00
9 lines
179 B
SQL
9 lines
179 B
SQL
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;
|