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-03 16:27:28 -0300 |
| commit | 399a7c33bbcabe4a5bde1a9b2a1f2c2922ad07b5 (patch) | |
| tree | cf2381b33ba22c8ab9909fc7ebdeb8e3d4388d8a /app/Schema/Postgres.php | |
| parent | de91d5820b9f987b17bea245ecf999b8e6aa7a81 (diff) | |
#1144 Add description field to swimlane.
Diffstat (limited to 'app/Schema/Postgres.php')
| -rw-r--r-- | app/Schema/Postgres.php | 7 |
1 files changed, 6 insertions, 1 deletions
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) { |
