Add notification column to database if needed

This commit is contained in:
Pelle Nilsson 2018-02-18 14:00:18 +01:00
parent c30873e8a2
commit 107b9be003

View File

@ -35,6 +35,10 @@ class Comments:
' text VARCHAR, author VARCHAR, email VARCHAR, website VARCHAR,', ' text VARCHAR, author VARCHAR, email VARCHAR, website VARCHAR,',
' likes INTEGER DEFAULT 0, dislikes INTEGER DEFAULT 0, voters BLOB NOT NULL,', ' likes INTEGER DEFAULT 0, dislikes INTEGER DEFAULT 0, voters BLOB NOT NULL,',
' notification INTEGER NOT NULL DEFAULT 0);']) ' notification INTEGER NOT NULL DEFAULT 0);'])
try:
self.db.execute(['ALTER TABLE comments ADD COLUMN notification INTEGER NOT NULL DEFAULT 0;'])
except:
pass
def add(self, uri, c): def add(self, uri, c):
""" """