moved config to a json, which makes adding more variables easier, but perhaps otherwise adds complexity
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
create table config (
|
||||
version text not null,
|
||||
name text not null,
|
||||
description text not null,
|
||||
secret_key text not null,
|
||||
captcha_key text not null,
|
||||
registration_enabled boolean not null,
|
||||
login_required boolean not null
|
||||
);
|
||||
--create table config (
|
||||
-- version text not null,
|
||||
-- name text not null,
|
||||
-- description text not null,
|
||||
-- secret_key text not null,
|
||||
-- captcha_key text not null,
|
||||
-- registration_enabled boolean not null,
|
||||
-- login_required boolean not null
|
||||
--);
|
||||
|
||||
create table users (
|
||||
user_id integer unique not null primary key autoincrement,
|
||||
|
||||
Reference in New Issue
Block a user