summaryrefslogtreecommitdiff
path: root/extras/m_sqloper.sqlite3.sql
diff options
context:
space:
mode:
authorDaniel Vassdal <shutter@canternet.org>2015-02-22 14:35:34 +0100
committerDaniel Vassdal <shutter@canternet.org>2015-02-22 14:38:15 +0100
commit0a195d3dc2a1d3f63560d8010cde5cb89e025cd9 (patch)
tree6af1fa1db038ffcb6e567cb4d5b78e4d17901b1a /extras/m_sqloper.sqlite3.sql
parent0b1315b1da2d5274b6a9f61eaa30bc731e066639 (diff)
m_sqloper.sqlite3.sql: Add `active` column
Diffstat (limited to 'extras/m_sqloper.sqlite3.sql')
-rw-r--r--extras/m_sqloper.sqlite3.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/m_sqloper.sqlite3.sql b/extras/m_sqloper.sqlite3.sql
index 1bb2937b8..1c607e664 100644
--- a/extras/m_sqloper.sqlite3.sql
+++ b/extras/m_sqloper.sqlite3.sql
@@ -3,5 +3,5 @@ id integer primary key,
username text,
password text,
hostname text,
-type text);
-
+type text,
+active integer NOT NULL DEFAULT 1);