From 339c990577a0c6fa8fd99959fe52aa25eff59c8f Mon Sep 17 00:00:00 2001 From: Fabiano Pereira Date: Thu, 3 Sep 2015 16:27:28 -0300 Subject: #1144 Add description field to swimlane. --- 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 9477b416..a5d28dcf 100644 --- a/app/Schema/Postgres.php +++ b/app/Schema/Postgres.php @@ -6,7 +6,12 @@ use PDO; use Core\Security; use Model\Link; -const VERSION = 65; +const VERSION = 66; + +function version_66($pdo) +{ + $pdo->exec("ALTER TABLE swimlanes ADD COLUMN description TEXT"); +} function version_65($pdo) { -- cgit v1.2.3