#1340 add append/replace option to dustom filters

This commit is contained in:
BlueTeck
2015-10-10 17:23:41 +02:00
parent e3521db6a8
commit c9ce5962a6
9 changed files with 41 additions and 9 deletions

View File

@@ -6,7 +6,12 @@ use PDO;
use Core\Security;
use Model\Link;
const VERSION = 70;
const VERSION = 71;
function version_71($pdo)
{
$pdo->exec("ALTER TABLE custom_filters ADD COLUMN append BOOLEAN DEFAULT '0'");
}
function version_70($pdo)
{