cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / core / SQL / SQLite / setup_030_buffer.sql
index 3e09d06..7e29531 100644 (file)
@@ -10,7 +10,9 @@ CREATE TABLE buffer (
        lastseenmsgid INTEGER NOT NULL DEFAULT 0,
        markerlinemsgid INTEGER NOT NULL DEFAULT 0,
        bufferactivity INTEGER NOT NULL DEFAULT 0,
+       highlightcount INTEGER NOT NULL DEFAULT 0,
        key TEXT,
        joined INTEGER NOT NULL DEFAULT 0, -- BOOL
+       cipher TEXT,
        CHECK (lastseenmsgid <= lastmsgid)
 )