preparing storage backend to store usermode and awaymessage for session restore
[quassel.git] / src / core / SQL / SQLite / 14 / setup_140_identity_nick.sql
diff --git a/src/core/SQL/SQLite/14/setup_140_identity_nick.sql b/src/core/SQL/SQLite/14/setup_140_identity_nick.sql
new file mode 100644 (file)
index 0000000..ea30a8a
--- /dev/null
@@ -0,0 +1,6 @@
+CREATE TABLE identity_nick (
+       nickid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
+       identityid INTEGER NOT NULL,
+       nick TEXT NOT NULL,
+       UNIQUE (identityid, nick)
+)