- MessageTypes are now binary exclusive which allows easy checks with multimple condi...
[quassel.git] / src / core / SQL / SQLite / 5 / setup_020_network.sql
diff --git a/src/core/SQL/SQLite/5/setup_020_network.sql b/src/core/SQL/SQLite/5/setup_020_network.sql
deleted file mode 100644 (file)
index 33a6fb8..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-CREATE TABLE network (
-       networkid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
-       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",
-       userandomserver INTEGER NOT NULL DEFAULT 0, -- BOOL
-       perform TEXT,
-       useautoidentify INTEGER NOT NULL DEFAULT 0, -- BOOL
-       autoidentifyservice TEXT,
-       autoidentifypassword TEXT,
-       useautoreconnect INTEGER NOT NULL DEFAULT 0, -- BOOL
-       autoreconnectinterval INTEGER NOT NULL DEFAULT 0,
-       autoreconnectretries INTEGER NOT NULL DEFAULT 0,
-       rejoinchannels INTEGER NOT NULL DEFAULT 0, -- BOOL
-       UNIQUE (userid, networkname)
-)