From 5f7a3442d61b99e2fbad732bd0eaf9ad64398274 Mon Sep 17 00:00:00 2001 From: Aurélien Date: Mon, 2 Apr 2018 23:07:04 +0200 Subject: Add default filter per user --- app/Schema/Postgres.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'app/Schema/Postgres.php') diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php index 8d5a68e5..50ea4850 100644 --- a/app/Schema/Postgres.php +++ b/app/Schema/Postgres.php @@ -8,7 +8,12 @@ use PDO; use Kanboard\Core\Security\Token; use Kanboard\Core\Security\Role; -const VERSION = 106; +const VERSION = 107; + +function version_107(PDO $pdo) +{ + $pdo->exec('ALTER TABLE "users" ADD COLUMN filter VARCHAR(255) DEFAULT NULL'); +} function version_106(PDO $pdo) { -- cgit v1.2.3