Add notification column to database if needed

pull/443/head
Pelle Nilsson 6 years ago
parent c30873e8a2
commit 107b9be003

@ -35,6 +35,10 @@ class Comments:
' text VARCHAR, author VARCHAR, email VARCHAR, website VARCHAR,',
' likes INTEGER DEFAULT 0, dislikes INTEGER DEFAULT 0, voters BLOB NOT NULL,',
' 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):
"""

Loading…
Cancel
Save