summaryrefslogtreecommitdiff
path: root/doc/karma.sql
diff options
context:
space:
mode:
Diffstat (limited to 'doc/karma.sql')
-rw-r--r--doc/karma.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/karma.sql b/doc/karma.sql
new file mode 100644
index 0000000..63f16f7
--- /dev/null
+++ b/doc/karma.sql
@@ -0,0 +1,14 @@
+/*
+ * This is how to create a factoid database
+ * Use this file like this:
+ * sqlite3 -batch data/envbot.db < doc/karma.sql
+ *
+ * If you use another table name, change below in
+ * both places
+ */
+DROP TABLE IF EXISTS karma;
+CREATE TABLE karma (
+ target TEXT UNIQUE NOT NULL PRIMARY KEY,
+ rating INTEGER NOT NULL,
+ is_locked INTEGER NOT NULL DEFAULT 0
+);