aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/src/test/java/org/sonar/db/version/CreateTableBuilderTest.java
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-8445 move def and sql builder classes to sonar-db-migrationSébastien Lesaint2016-12-161-580/+0
|
* SONAR-5471 fix type of INTEGER columns on OracleSimon Brandhof2016-12-131-1/+1
| | | | | | Correct type is NUMBER(38,0) but not INTEGER Signed-off-by: Simon Brandhof <simon.brandhof@sonarsource.com>
* SONAR-5471 Auto-incremented ID must start with 1 on all DBSimon Brandhof2016-12-131-3/+3
| | | | | | | - H2 was 1 in schema-h2.ddl but 0 in CreateTableBuilder - MSSQL was 1 in ruby but 0 in CreateTableBuilder Signed-off-by: Simon Brandhof <simon.brandhof@sonarsource.com>
* SONAR-5471 support default value in boolean and varchar columnsSimon Brandhof2016-12-121-0/+64
|
* SONAR-5471 share validations of index/table/constraint namesSimon Brandhof2016-12-121-6/+6
|
* SONAR-8094 remove create table on Oracle with SECUREFILE clauseSébastien Lesaint2016-09-191-54/+0
|
* SONAR-8025 create MySQL table with hardcoded Engine,Charset&CollationSébastien Lesaint2016-09-161-185/+195
|
* SONAR-8025 strengthen name checks in CreateTableBuilderSébastien Lesaint2016-09-161-186/+299
|
* SONAR-8025 add support for autoincrement column to CreateTableBuilderSébastien Lesaint2016-09-161-5/+144
|
* SONAR-8025 add LOB storage clause to CreateTableBuilder for OracleSébastien Lesaint2016-09-161-1/+58
|
* SONAR-8025 add CreateTableBuilderSébastien Lesaint2016-09-161-0/+251