diff options
author | Fabiano Pereira <fabiano.pereira@serpro.gov.br> | 2015-09-03 16:27:28 -0300 |
---|---|---|
committer | Fabiano Pereira <fabiano.pereira@serpro.gov.br> | 2015-09-04 10:17:20 -0300 |
commit | 339c990577a0c6fa8fd99959fe52aa25eff59c8f (patch) | |
tree | 1fd5c720fb8a142a6fbaafea1c26b145773a8d67 /app/Schema/Mysql.php | |
parent | de91d5820b9f987b17bea245ecf999b8e6aa7a81 (diff) |
#1144 Add description field to swimlane.
Diffstat (limited to 'app/Schema/Mysql.php')
-rw-r--r-- | app/Schema/Mysql.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Schema/Mysql.php b/app/Schema/Mysql.php index b1ac0ab9..efdb159b 100644 --- a/app/Schema/Mysql.php +++ b/app/Schema/Mysql.php @@ -6,7 +6,12 @@ use PDO; use Core\Security; use Model\Link; -const VERSION = 85; +const VERSION = 86; + +function version_86($pdo) +{ + $pdo->exec("ALTER TABLE swimlanes ADD COLUMN description TEXT"); +} function version_85($pdo) { |