Add configurable list of predefined subjects when sending a task by email

This commit is contained in:
Frederic Guillot
2017-06-03 17:31:32 -04:00
parent 9668723af4
commit dd8d7ef49d
35 changed files with 110 additions and 5 deletions

View File

@@ -8,7 +8,12 @@ use Kanboard\Core\Security\Token;
use Kanboard\Core\Security\Role;
use PDO;
const VERSION = 114;
const VERSION = 115;
function version_115(PDO $pdo)
{
$pdo->exec('ALTER TABLE projects ADD COLUMN predefined_email_subjects TEXT');
}
function version_114(PDO $pdo)
{