5 lines
136 B
SQL
5 lines
136 B
SQL
CREATE table if not exists settings (
|
|
id integer primary key auto_increment,
|
|
setting text not null,
|
|
value text null)
|