Add verification where new users start with lower votes

This commit is contained in:
Ajay
2023-06-10 12:35:43 -04:00
parent 1cacb2dd69
commit 3bb8d5b58b
6 changed files with 194 additions and 23 deletions

View File

@@ -0,0 +1,7 @@
BEGIN TRANSACTION;
ALTER TABLE "titleVotes" ADD "verification" INTEGER default 0;
UPDATE "config" SET value = 35 WHERE key = 'version';
COMMIT;