7 lines
122 B
SQL
7 lines
122 B
SQL
create table config
|
|
(
|
|
name text primary key,
|
|
enabled bool not null default false,
|
|
value text not null
|
|
);
|