8
0
Fork 0

Commits vergleichen

...

2 Commits
1.2.1 ... 1.3.0

Autor SHA1 Nachricht Datum
MaxBUhe a62b3cdd89 bump version + changelog 2023-04-03 12:00:39 +02:00
MaxBUhe d0d90c4250 rm unnecessary additional method 2023-04-03 11:57:56 +02:00
3 geänderte Dateien mit 8 neuen und 31 gelöschten Zeilen

Datei anzeigen

@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased](https://git.d3data.de/D3Private/SecondLongDesc/compare/1.2.1...rel_1.x)
## [Unreleased](https://git.d3data.de/D3Private/SecondLongDesc/compare/1.3.0...rel_1.x)
## [1.3.0](https://git.d3data.de/D3Private/SecondLongDesc/compare/1.2.1...1.3.0) - 2023-04-03
### Removed
- migration additional method
## [1.2.1](https://git.d3data.de/D3Private/SecondLongDesc/compare/1.1.0...1.2.1) - 2023-04-03
### Fixed

Datei anzeigen

@ -31,7 +31,7 @@ $aModule = array(
. 'Diese Erweiterung bietet einen zweiten Kategorielangtext.<br>' //
. 'Angezeigt wird der zweite Langtext unter der Artikelauflistung in der Listenansicht.',
'thumbnail' => 'picture.png',
'version' => '1.2.1',
'version' => '1.3.0',
'author' => $logo.' Data Development (Inh.: Thomas Dartsch)',
'email' => 'support@shopmodule.com',
'url' => 'https://www.oxidmodule.com/',

Datei anzeigen

@ -9,7 +9,6 @@ use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Schema\SchemaException;
use Doctrine\DBAL\Types\TextType;
use OxidEsales\Eshop\Core\DatabaseProvider;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
@ -26,8 +25,6 @@ final class Version20230403083243 extends AbstractMigration
/**
* @throws SchemaException
* @throws DBALException
* @throws DatabaseErrorException
* @throws DatabaseConnectionException
*/
public function up(Schema $schema) : void
{
@ -35,9 +32,10 @@ final class Version20230403083243 extends AbstractMigration
$table = $schema->getTable('oxcategories');
$table->hasColumn('D3LONGDESC2') ?:
if (!$table->hasColumn('D3LONGDESC2')){
$table->addColumn('D3LONGDESC2', (new TextType())->getName())
->setNotnull(true);
}
$table->hasColumn('D3LONGDESC2_1') ?:
$table->addColumn('D3LONGDESC2_1', (new TextType())->getName())
@ -50,31 +48,6 @@ final class Version20230403083243 extends AbstractMigration
$table->hasColumn('D3LONGDESC2_3') ?:
$table->addColumn('D3LONGDESC2_3', (new TextType())->getName())
->setNotnull(true);
$this->postProcesses();
}
/**
* @throws DatabaseErrorException
* @throws DatabaseConnectionException
*/
public function postProcesses(){
$sAltering = 'ALTER TABLE oxcategories MODIFY
? text
CHARACTER SET latin1
COLLATE latin1_swedish_ci;';
$aAlterColumns = [
'D3LONGDESC2',
'D3LONGDESC2_1',
'D3LONGDESC2_2',
'D3LONGDESC2_3'
];
foreach ($aAlterColumns as $column){
DatabaseProvider::getDb()->execute($sAltering, $column);
}
}
public function down(Schema $schema) : void