ALTER TABLE pro_produto_ecommerce ADD COLUMN tipo_entrega integer; UPDATE pro_produto_ecommerce SET tipo_entrega = 0 WHERE tipo_entrega IS NULL; ALTER TABLE pro_produto_ecommerce ALTER COLUMN tipo_entrega SET NOT NULL;