6 lines
150 B
SQL
6 lines
150 B
SQL
create table if not exists settings (
|
|
id integer primary key,
|
|
ics_path text
|
|
);
|
|
|
|
insert into settings (id) values (1) on conflict (id) do nothing;
|