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