Increase action name column length in actions table
This commit is contained in:
@@ -19,6 +19,7 @@ Improvements:
|
|||||||
* Improving performance during task position change (SQL queries are 3 times faster than before)
|
* Improving performance during task position change (SQL queries are 3 times faster than before)
|
||||||
* Do not show window scrollbars when individual column scrolling is enabled
|
* Do not show window scrollbars when individual column scrolling is enabled
|
||||||
* Automatic Actions code improvements and unit tests
|
* Automatic Actions code improvements and unit tests
|
||||||
|
* Increase action name column length in actions table
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,12 @@ use PDO;
|
|||||||
use Kanboard\Core\Security\Token;
|
use Kanboard\Core\Security\Token;
|
||||||
use Kanboard\Core\Security\Role;
|
use Kanboard\Core\Security\Role;
|
||||||
|
|
||||||
const VERSION = 99;
|
const VERSION = 100;
|
||||||
|
|
||||||
|
function version_100(PDO $pdo)
|
||||||
|
{
|
||||||
|
$pdo->exec('ALTER TABLE `actions` MODIFY `action_name` VARCHAR(255)');
|
||||||
|
}
|
||||||
|
|
||||||
function version_99(PDO $pdo)
|
function version_99(PDO $pdo)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,7 +6,12 @@ use PDO;
|
|||||||
use Kanboard\Core\Security\Token;
|
use Kanboard\Core\Security\Token;
|
||||||
use Kanboard\Core\Security\Role;
|
use Kanboard\Core\Security\Role;
|
||||||
|
|
||||||
const VERSION = 79;
|
const VERSION = 80;
|
||||||
|
|
||||||
|
function version_80(PDO $pdo)
|
||||||
|
{
|
||||||
|
$pdo->exec('ALTER TABLE "actions" ALTER COLUMN "action_name" TYPE VARCHAR(255)');
|
||||||
|
}
|
||||||
|
|
||||||
function version_79(PDO $pdo)
|
function version_79(PDO $pdo)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user