Kyoo/auth/sql/migrations/000002_config.up.sql
2024-10-19 18:09:20 +02:00

9 lines
102 B
PL/PgSQL

begin;
create table config(
key varchar(256) not null primary key,
value text not null
);
commit;