diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-24 21:12:19 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-24 21:12:19 -0500 |
commit | 4fc518b2c9721f366b998021fe60a31a15430f0e (patch) | |
tree | eb10517af8129b6b6ef49118b1b4e7dbc015e40c /app/Schema/Mysql.php | |
parent | 0fd8241f4609be789cd82046648e4d8c9188aaec (diff) | |
parent | dedf425e8168b2c38e8566a3d407f77fb11cc001 (diff) |
Merge pull-request #657
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 947a62b3..eeab24d6 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 = 46; +const VERSION = 47; + +function version_47($pdo) +{ + $pdo->exec('ALTER TABLE projects ADD COLUMN description TEXT'); +} function version_46($pdo) { |