Files
2023-03-03 12:03:14 -05:00

7 lines
122 B
SQL

create table config
(
name text primary key,
enabled bool not null default false,
value text not null
);