Save userid with votes

This commit is contained in:
Ajay
2022-03-30 16:02:30 -04:00
parent 9bcf7ed199
commit fe0afd58bc
3 changed files with 16 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
BEGIN TRANSACTION;
ALTER TABLE "votes" ADD "normalUserID" TEXT NOT NULL default '';
UPDATE "config" SET value = 7 WHERE key = 'version';
COMMIT;