$alters = " ALTER TABLE imovel
MODIFY COLUMN ENDERECO VARCHAR(150),
MODIFY COLUMN BAIRRO VARCHAR(150)";
$pdo->exec($alters);
As I lower the value of varchar, it will update, but if I increase the value of varchar it does not work anymore.
Any explanation?