From 3f7840c4db7384eb142f92c33330827b8d7255f9 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 5 Nov 2016 22:26:58 -0400 Subject: Add the possibility to create external tasks --- app/Schema/Sqlite.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'app/Schema/Sqlite.php') diff --git a/app/Schema/Sqlite.php b/app/Schema/Sqlite.php index f86a6af0..edf6ce63 100644 --- a/app/Schema/Sqlite.php +++ b/app/Schema/Sqlite.php @@ -6,7 +6,13 @@ use Kanboard\Core\Security\Token; use Kanboard\Core\Security\Role; use PDO; -const VERSION = 106; +const VERSION = 107; + +function version_107(PDO $pdo) +{ + $pdo->exec("ALTER TABLE tasks ADD COLUMN external_provider TEXT"); + $pdo->exec("ALTER TABLE tasks ADD COLUMN external_uri TEXT"); +} function version_106(PDO $pdo) { -- cgit v1.2.3