The \Magento\Quote\Setup\UpgradeSchema::upgrade() method can be simplified by using the modifyColumn() instead of changeColumn() method of the \Magento\Framework\DB\Adapter\AdapterInterface because the column need not be renamed

This can be simplified to:

$setup->getConnection()->modifyColumn(
	$setup->getTable('quote_address'),
	'street',
	[
		'type' => \Magento\Framework\DB\Ddl\Table::TYPE_TEXT,
		'length' => 255,
		'comment' => 'Street'
	]
);

See also: