mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-01 19:17:16 -04:00
9 lines
102 B
PL/PgSQL
9 lines
102 B
PL/PgSQL
begin;
|
|
|
|
create table config(
|
|
key varchar(256) not null primary key,
|
|
value text not null
|
|
);
|
|
|
|
commit;
|