X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2FSQL%2FSQLite%2F15%2Fsetup_020_network.sql;fp=src%2Fcore%2FSQL%2FSQLite%2F15%2Fsetup_020_network.sql;h=0000000000000000000000000000000000000000;hb=18cda6df43b5960686256fb6a899a63baebff70d;hp=c4e864e1d6bc0cfe6332f3bf5703c531db83e652;hpb=91361e82b8cd46e7c4bfc4475e6ecb1d0b268310;p=quassel.git diff --git a/src/core/SQL/SQLite/15/setup_020_network.sql b/src/core/SQL/SQLite/15/setup_020_network.sql deleted file mode 100644 index c4e864e1..00000000 --- a/src/core/SQL/SQLite/15/setup_020_network.sql +++ /dev/null @@ -1,25 +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, - 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 - autoidentifyservice TEXT, - autoidentifypassword TEXT, - 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 - connected INTEGER NOT NULL DEFAULT 0, -- BOOL - usermode TEXT, -- user mode to restore - awaymessage TEXT, -- away message to restore (empty if not away) - attachperform TEXT, -- perform list for on attach - detachperform TEXT, -- perform list for on detach - UNIQUE (userid, networkname) -)