8 lines
181 B
MySQL
8 lines
181 B
MySQL
|
|
create table if not exists settings (
|
||
|
|
id integer primary key,
|
||
|
|
show_underdue boolean not null default true
|
||
|
|
);
|
||
|
|
|
||
|
|
insert into settings (id) values (1) on conflict (id) do nothing;
|
||
|
|
|