Pagekit\Database\Utility::migrate PHP Метод

migrate() публичный Метод

Migrates the database.
public migrate ( ) : Doctrine\DBAL\Schema\Schema
Результат Doctrine\DBAL\Schema\Schema
    public function migrate()
    {
        $diff = Comparator::compareSchemas($this->manager->createSchema(), $this->schema);
        foreach ($diff->toSaveSql($this->connection->getDatabasePlatform()) as $query) {
            $this->connection->executeQuery($query);
        }
    }