Compare commits

...

2 Commits
1.1.0 ... 1.2.1

Author SHA1 Message Date
MaxBUhe 85b0adfcbf bump version and changelog 2023-04-03 11:39:11 +02:00
MaxBUhe f7f5b49082 fix bug: wrong class call and wrong use-call 2023-04-03 11:36:44 +02:00
3 changed files with 13 additions and 7 deletions

View File

@ -4,7 +4,13 @@ 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.1.0...rel_1.x)
## [Unreleased](https://git.d3data.de/D3Private/SecondLongDesc/compare/1.2.1...rel_1.x)
## [1.2.1](https://git.d3data.de/D3Private/SecondLongDesc/compare/1.1.0...1.2.1) - 2023-04-03
### Fixed
- migration-file
- wrong class call in migration-file
- file extension use-call
## [1.1.0](https://git.d3data.de/D3Private/SecondLongDesc/compare/1.0.0...1.1.0) - 2023-04-03
### Added

View File

@ -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.0.0',
'version' => '1.2.1',
'author' => $logo.' Data Development (Inh.: Thomas Dartsch)',
'email' => 'support@shopmodule.com',
'url' => 'https://www.oxidmodule.com/',

View File

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace D3\CategoryLongtext\Migrations;
use Doctrine\DBAL\DBALException;
use Doctrine\DBAL\Migrations\AbstractMigration;
use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Schema\SchemaException;
use Doctrine\DBAL\Types\TextType;
@ -36,19 +36,19 @@ final class Version20230403083243 extends AbstractMigration
$table = $schema->getTable('oxcategories');
$table->hasColumn('D3LONGDESC2') ?:
$table->addColumn('D3LONGDESC2', (new TextType::class)->getName())
$table->addColumn('D3LONGDESC2', (new TextType())->getName())
->setNotnull(true);
$table->hasColumn('D3LONGDESC2_1') ?:
$table->addColumn('D3LONGDESC2_1', (new TextType::class)->getName())
$table->addColumn('D3LONGDESC2_1', (new TextType())->getName())
->setNotnull(true);
$table->hasColumn('D3LONGDESC2_2') ?:
$table->addColumn('D3LONGDESC2_2', (new TextType::class)->getName())
$table->addColumn('D3LONGDESC2_2', (new TextType())->getName())
->setNotnull(true);
$table->hasColumn('D3LONGDESC2_3') ?:
$table->addColumn('D3LONGDESC2_3', (new TextType::class)->getName())
$table->addColumn('D3LONGDESC2_3', (new TextType())->getName())
->setNotnull(true);
$this->postProcesses();