From 7963bd1bf27fe899ffb778a83c5fcb52f4a23e48 Mon Sep 17 00:00:00 2001 From: David Hoppenbrouwers Date: Sat, 15 Oct 2022 21:56:27 +0200 Subject: [PATCH] Enable registrations when testing It's a tad more convenient --- test/init_db.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/init_db.txt b/test/init_db.txt index d46a34c..cc01c5f 100644 --- a/test/init_db.txt +++ b/test/init_db.txt @@ -29,3 +29,5 @@ insert into comments (author_id, thread_id, create_time, modify_time, text) values (2, 1, 0, 0, "Hi!"); insert into comments (author_id, thread_id, create_time, modify_time, text, parent_id) values (3, 1, 0, 0, "Greetings.", 1); + +update config set registration_enabled = 1;