mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -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;
|