Enable registrations when testing

It's a tad more convenient
This commit is contained in:
David Hoppenbrouwers
2022-10-15 21:56:27 +02:00
parent 23c9b35950
commit 7963bd1bf2

View File

@@ -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;