Various database migration fixes (#25209)
* String columns with a length higher then 4000 are converted into a CLOB columns automagically - we have to respect this when migrating * Adding schema migration tests to prevent unnecessary and non-sense migration steps Fix Oracle autoincrement and unsigned handling * Fix sqlite integer type for autoincrement * Use lower case table names - fixes pg * Fix postgres with default -1 - this only affect pg 9.4 servers - 9.5 seems to work fine
Showing
- lib/private/DB/MDB2SchemaManager.php 1 addition, 1 deletionlib/private/DB/MDB2SchemaManager.php
- lib/private/DB/Migrator.php 20 additions, 0 deletionslib/private/DB/Migrator.php
- lib/private/DB/OracleMigrator.php 6 additions, 0 deletionslib/private/DB/OracleMigrator.php
- lib/private/DB/PostgreSqlMigrator.php 55 additions, 0 deletionslib/private/DB/PostgreSqlMigrator.php
- lib/private/DB/SQLiteMigrator.php 11 additions, 0 deletionslib/private/DB/SQLiteMigrator.php
- tests/lib/DB/DBSchemaTest.php 4 additions, 3 deletionstests/lib/DB/DBSchemaTest.php
- tests/lib/DB/SchemaDiffTest.php 99 additions, 0 deletionstests/lib/DB/SchemaDiffTest.php
- tests/lib/DB/schemDiffData/autoincrement.xml 16 additions, 0 deletionstests/lib/DB/schemDiffData/autoincrement.xml
- tests/lib/DB/schemDiffData/clob.xml 14 additions, 0 deletionstests/lib/DB/schemDiffData/clob.xml
- tests/lib/DB/schemDiffData/core.xml 1347 additions, 0 deletionstests/lib/DB/schemDiffData/core.xml
- tests/lib/DB/schemDiffData/default-1.xml 51 additions, 0 deletionstests/lib/DB/schemDiffData/default-1.xml
- tests/lib/DB/schemDiffData/unsigned.xml 68 additions, 0 deletionstests/lib/DB/schemDiffData/unsigned.xml
Loading
Please register or sign in to comment