summaryrefslogtreecommitdiff
path: root/app/Schema/Sqlite.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Schema/Sqlite.php')
-rw-r--r--app/Schema/Sqlite.php16
1 files changed, 15 insertions, 1 deletions
diff --git a/app/Schema/Sqlite.php b/app/Schema/Sqlite.php
index 26ad96c7..064d0f3c 100644
--- a/app/Schema/Sqlite.php
+++ b/app/Schema/Sqlite.php
@@ -6,7 +6,21 @@ use Core\Security;
use PDO;
use Model\Link;
-const VERSION = 83;
+const VERSION = 84;
+
+function version_84($pdo)
+{
+ $pdo->exec("
+ CREATE TABLE custom_filters (
+ id INTEGER PRIMARY KEY,
+ filter TEXT NOT NULL,
+ project_id INTEGER NOT NULL,
+ user_id INTEGER NOT NULL,
+ name TEXT NOT NULL,
+ is_shared INTEGER DEFAULT 0
+ )
+ ");
+}
function version_83($pdo)
{