Introducing the all-new all-fancy bufferviews.
[quassel.git] / src / core / SQL / SQLite / 11 / setup_080_ircservers.sql
diff --git a/src/core/SQL/SQLite/11/setup_080_ircservers.sql b/src/core/SQL/SQLite/11/setup_080_ircservers.sql
new file mode 100644 (file)
index 0000000..89a1698
--- /dev/null
@@ -0,0 +1,9 @@
+CREATE TABLE ircserver (
+    serverid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
+    userid INTEGER NOT NULL,
+    networkid INTEGER NOT NULL,
+    hostname TEXT NOT NULL,
+    port INTEGER NOT NULL DEFAULT 6667,
+    password TEXT,
+    ssl INTEGER NOT NULL DEFAULT 0
+)