core: Store session state in database, migrate old
[quassel.git] / src / core / SQL / SQLite / setup_160_corestate.sql
diff --git a/src/core/SQL/SQLite/setup_160_corestate.sql b/src/core/SQL/SQLite/setup_160_corestate.sql
new file mode 100644 (file)
index 0000000..a26d852
--- /dev/null
@@ -0,0 +1,5 @@
+CREATE TABLE core_state (
+    key TEXT NOT NULL,
+    value bytea,
+    PRIMARY KEY (key)
+)