Bolt\Storage\Database\Schema\SchemaCheck::getRemovedColumns PHP Method

getRemovedColumns() private method

Record removed columns.
private getRemovedColumns ( string $tableName, Doctrine\DBAL\Schema\TableDiff $diff )
$tableName string
$diff Doctrine\DBAL\Schema\TableDiff
    private function getRemovedColumns($tableName, TableDiff $diff)
    {
        foreach (array_keys($diff->removedColumns) as $colName) {
            $this->addMessage($tableName, sprintf('removed column `%s`', $colName));
        }
    }