Changed storage to store last seen dates of buffers, server encoding
[quassel.git] / src / core / SQL / SQLite / 7 / setup_020_network.sql
similarity index 87%
rename from src/core/SQL/SQLite/6/setup_020_network.sql
rename to src/core/SQL/SQLite/7/setup_020_network.sql
index 33a6fb8..1043576 100644 (file)
@@ -3,9 +3,9 @@ CREATE TABLE network (
        userid INTEGER NOT NULL,
        networkname TEXT NOT NULL,
        identityid INTEGER NOT NULL DEFAULT 1,
-       usecustomencoding INTEGER NOT NULL DEFAULT 0, -- BOOL
        encodingcodec TEXT NOT NULL DEFAULT "ISO-8859-15",
        decodingcodec TEXT NOT NULL DEFAULT "ISO-8859-15",
+       servercodec TEXT NOT NULL DEFAULT "",
        userandomserver INTEGER NOT NULL DEFAULT 0, -- BOOL
        perform TEXT,
        useautoidentify INTEGER NOT NULL DEFAULT 0, -- BOOL
@@ -14,6 +14,7 @@ CREATE TABLE network (
        useautoreconnect INTEGER NOT NULL DEFAULT 0, -- BOOL
        autoreconnectinterval INTEGER NOT NULL DEFAULT 0,
        autoreconnectretries INTEGER NOT NULL DEFAULT 0,
+       unlimitedconnectretries INTEGER NOT NULL DEFAULT 0, -- BOOL
        rejoinchannels INTEGER NOT NULL DEFAULT 0, -- BOOL
        UNIQUE (userid, networkname)
 )