mirror of
https://github.com/penpot/penpot.git
synced 2025-07-17 07:27:13 +02:00
8 lines
179 B
SQL
8 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;
|