7 lines
181 B
SQL
7 lines
181 B
SQL
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;
|
|
|