Bret R. Zaun
Bret R. Zaun
I am having a similar problem using an Oracle database, where I get the following message: ``` An exception occurred while executing 'ALTER TABLE migration_versions ADD (version VARC HAR2(14) NOT...
@jwage Which configuration do you mean?
@jwage This is our migrations.yml: ``` name: MyProject Migrations migrations_namespace: MyProject\Migrations table_name: myproject_migration_versions migrations_directory: src/Migrations ```
simplified version (skipped all the Oracle overhead): ``` CREATE TABLE "MYPROJECT_MIGRATION_VERSIONS" ( "VERSION" VARCHAR2(255 BYTE) NOT NULL ENABLE, PRIMARY KEY ("VERSION") ); ```
Any news on this? Just stumbled across this issue myself.
This has been unnoted because according to the composer.json "symfony/console" ^7 is allowed, but composer.lock sticks the version to 6, which is why the tests will work.