summaryrefslogtreecommitdiff
path: root/app/Schema/Mysql.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-04-19 14:48:12 -0400
committerFrederic Guillot <fred@kanboard.net>2015-04-19 14:48:12 -0400
commit1891e87d035c235550b5889da585e166cf49502f (patch)
treea6100a70184e635788aaed4071ca968a0fde3088 /app/Schema/Mysql.php
parent370b5a0fd7c1dba60e3b973506ba087adba42be0 (diff)
Add Postmark integration (inbound emails for task creation)
Diffstat (limited to 'app/Schema/Mysql.php')
-rw-r--r--app/Schema/Mysql.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Schema/Mysql.php b/app/Schema/Mysql.php
index 3e67387d..22f8c1b0 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 = 65;
+const VERSION = 66;
+
+function version_66($pdo)
+{
+ $pdo->exec("ALTER TABLE projects ADD COLUMN identifier VARCHAR(50) DEFAULT ''");
+}
function version_65($pdo)
{