Fix field too small for application settings

This commit is contained in:
Frederic Guillot
2016-12-02 20:49:30 -05:00
parent f2fd5d75d9
commit faef2e85d1
5 changed files with 138 additions and 118 deletions

View File

@@ -6,7 +6,12 @@ use PDO;
use Kanboard\Core\Security\Token;
use Kanboard\Core\Security\Role;
const VERSION = 116;
const VERSION = 117;
function version_117(PDO $pdo)
{
$pdo->exec("ALTER TABLE `settings` MODIFY `value` TEXT");
}
function version_116(PDO $pdo)
{