X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2FSQL%2FSQLite%2F14%2Fupgrade_010_create_networktable.sql;fp=src%2Fcore%2FSQL%2FSQLite%2F14%2Fupgrade_010_create_networktable.sql;h=0000000000000000000000000000000000000000;hp=c4e864e1d6bc0cfe6332f3bf5703c531db83e652;hb=3cf5c49e7753be48a994917fe898730add4292b1;hpb=e4fc79c07f5301ce2c7888e709ada0945b675c4f diff --git a/src/core/SQL/SQLite/14/upgrade_010_create_networktable.sql b/src/core/SQL/SQLite/14/upgrade_010_create_networktable.sql deleted file mode 100644 index c4e864e1..00000000 --- a/src/core/SQL/SQLite/14/upgrade_010_create_networktable.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) -)