Remove the check on Valuemax

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2018-03-21 15:27:57 +01:00
parent 129dcba693
commit 4e021c2bc3

View File

@ -65,7 +65,6 @@ class AddColumn_ValueMax_In_poll_For_1_1 implements Migration {
private function alterPollTable(\PDO $pdo) { private function alterPollTable(\PDO $pdo) {
$pdo->exec(' $pdo->exec('
ALTER TABLE `' . Utils::table('poll') . '` ALTER TABLE `' . Utils::table('poll') . '`
ADD `ValueMax` TINYINT, ADD `ValueMax` TINYINT NULL;');
ADD CHECK (ValueMax > 0)');
} }
} }