'latitude', 'lon' => 'longitude']; /** * @throws DBALException */ public function preUp(Schema $schema): void { $visitLocations = $schema->getTable('visit_locations'); $this->skipIf(some( self::COLUMNS, fn (string $v, string $newColName) => $visitLocations->hasColumn($newColName), ), 'New columns already exist'); foreach (self::COLUMNS as $columnName) { $qb = $this->connection->createQueryBuilder(); $qb->update('visit_locations') ->set($columnName, ':zeroValue') ->where($qb->expr()->orX( $qb->expr()->eq($columnName, ':emptyString'), $qb->expr()->isNull($columnName), )) ->setParameters([ 'zeroValue' => '0', 'emptyString' => '', ]) ->execute(); } } /** * @throws DBALException */ public function up(Schema $schema): void { $visitLocations = $schema->getTable('visit_locations'); foreach (self::COLUMNS as $newName => $oldName) { $visitLocations->addColumn($newName, Types::FLOAT, [ 'default' => '0.0', ]); } } /** * @throws DBALException */ public function postUp(Schema $schema): void { $platformName = $this->connection->getDatabasePlatform()->getName(); $castType = $platformName === 'postgres' ? 'DOUBLE PRECISION' : 'DECIMAL(9,2)'; foreach (self::COLUMNS as $newName => $oldName) { $qb = $this->connection->createQueryBuilder(); $qb->update('visit_locations') ->set($newName, 'CAST(' . $oldName . ' AS ' . $castType . ')') ->execute(); } } public function preDown(Schema $schema): void { foreach (self::COLUMNS as $newName => $oldName) { $qb = $this->connection->createQueryBuilder(); $qb->update('visit_locations') ->set($oldName, $newName) ->execute(); } } /** * @throws DBALException */ public function down(Schema $schema): void { $visitLocations = $schema->getTable('visit_locations'); foreach (self::COLUMNS as $colName => $oldName) { $visitLocations->dropColumn($colName); } } }