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 PDO;
use Kanboard\Core\Security\Token;
use Kanboard\Core\Security\Role;
const VERSION = 102;
const VERSION = 103;
function version_103(PDO $pdo)
{
$pdo->exec('ALTER TABLE projects ADD COLUMN predefined_email_subjects TEXT');
}
function version_102(PDO $pdo)
{