Migrations\Shell\Task\MigrationDiffTask::calculateDiff PHP Method

calculateDiff() protected method

This methods runs the various methods needed to calculate a diff between the current state of the database and the schema dump file.
protected calculateDiff ( ) : void
return void
    protected function calculateDiff()
    {
        $this->getConstraints();
        $this->getIndexes();
        $this->getColumns();
        $this->getTables();
    }