mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-17 21:00:41 -06:00
Fix columns order in unique_short_code_plus_domain index in MSSQL
This commit is contained in:
parent
4e8f3f737a
commit
33cea36b15
17
CHANGELOG.md
17
CHANGELOG.md
@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
|
The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
|
# [Unreleased]
|
||||||
|
### Added
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* [#2285](https://github.com/shlinkio/shlink/issues/2285) Fix performance degradation when using Microsoft SQL due to incorrect order of columns in `unique_short_code_plus_domain` index.
|
||||||
|
|
||||||
|
|
||||||
## [4.3.0] - 2024-11-24
|
## [4.3.0] - 2024-11-24
|
||||||
### Added
|
### Added
|
||||||
* [#2159](https://github.com/shlinkio/shlink/issues/2159) Add support for PHP 8.4.
|
* [#2159](https://github.com/shlinkio/shlink/issues/2159) Add support for PHP 8.4.
|
||||||
|
28
module/Core/migrations/Version20241125213106.php
Normal file
28
module/Core/migrations/Version20241125213106.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace ShlinkMigrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Platforms\SQLServerPlatform;
|
||||||
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
|
final class Version20241125213106 extends AbstractMigration
|
||||||
|
{
|
||||||
|
public function up(Schema $schema): void
|
||||||
|
{
|
||||||
|
$this->skipIf(! $this->isMsSql());
|
||||||
|
|
||||||
|
// Recreate unique_short_code_plus_domain index in Microsoft SQL, as it accidentally has the columns defined in
|
||||||
|
// the wrong order after Version20230130090946 migration
|
||||||
|
$shortUrls = $schema->getTable('short_urls');
|
||||||
|
$shortUrls->dropIndex('unique_short_code_plus_domain');
|
||||||
|
$shortUrls->addUniqueIndex(['short_code', 'domain_id'], 'unique_short_code_plus_domain');
|
||||||
|
}
|
||||||
|
|
||||||
|
private function isMsSql(): bool
|
||||||
|
{
|
||||||
|
return $this->connection->getDatabasePlatform() instanceof SQLServerPlatform;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user