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