aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/src/test/java/org/sonar/db/version/AlterColumnsBuilderTest.java
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-8445 move def and sql builder classes to sonar-db-migrationSébastien Lesaint2016-12-161-165/+0
|
* SONAR-8533 Force unit CHAR on VARCHAR columns on OracleSimon Brandhof2016-12-131-2/+2
| | | | Signed-off-by: Simon Brandhof <simon.brandhof@sonarsource.com>
* SONAR-5471 support default value in boolean and varchar columnsSimon Brandhof2016-12-121-1/+21
|
* DB migration: make alter column re-entrant on OracleSébastien Lesaint2016-06-131-3/+9
| | | | | this is achieved by handling errors ORA-01451 and ORA-01442 when statement is executed and executing it again without the confliction NULL or NOT NULL also, altering multiple columns in the same statement on Oracle had to be removed to ensure correct handling of these errors
* rename AlterColumnsTypeBuilder to AlterColumnsBuilderSébastien Lesaint2016-06-131-0/+139
|
* SONAR-6884 Take into account nullable information when updating a columnJulien Lancelot2015-12-031-96/+0
|
* SONAR-6884 Rename StringColumnDef to VarcharColumnDefJulien Lancelot2015-12-031-4/+3
|
* Replace VARCHAR by NVARCHAR on MsSQLSimon Brandhof2015-10-121-1/+1
|
* SONAR-6840 Group migrations touching same tableJulien Lancelot2015-09-181-0/+97
Migrations that are done on the same table are now executed with only one SQL query