aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-migration
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-15587 - Change DB Migration for sonarlint_ad_seenBelen Pruvost2021-11-041-1/+3
|
* SONAR-15587 - Add sonarlint_ad_seen boolean column to users tableBelen Pruvost2021-11-037-1/+301
|
* SONAR-15441 - Create table for qgate_group_permissionsBelen Pruvost2021-10-226-45/+172
|
* SONAR-15497 Create database store for qgate_user_permissionsZipeng WU2021-10-224-1/+132
|
* SONAR-15478 added a new boolean column to the Issues table quick_fix_availableLukasz Jarocki2021-10-134-0/+143
|
* SONAR-15451 migrate existing team restriction from auth pluginPierre2021-09-285-2/+146
|
* Fix code quality issuesDuarte Meneses2021-09-241-10/+0
|
* Add missing package-infoDuarte Meneses2021-09-231-0/+24
|
* SONAR-15422 Portfolios 'selection_expression' column is too shortDuarte Meneses2021-09-226-0/+198
|
* SONAR-15378 create migration script to remove svn propertiesLukasz Jarocki2021-09-155-2/+129
|
* SONAR-15334 - Project Export Findings endpointPierre2021-09-145-1/+122
|
* SONAR-15259 Add DB indexesDuarte Meneses2021-09-0811-4/+393
|
* SONAR-15259 Fix resolution of references and improve code qualityDuarte Meneses2021-09-082-2/+1
|
* SONAR-15259 Migrate portfolios from XML to DBJacek2021-09-086-2/+1125
|
* SONAR-15259 Create new tables, daos, dtos and mappersDuarte Meneses2021-09-089-2/+366
|
* SONAR-15322 Allow SQ DB fit encrypted DevOps Platform valuesZipeng WU2021-08-308-2/+237
|
* SONAR-15237 Register removal of pluginsDuarte Meneses2021-08-045-2/+116
|
* SONAR-15234 Make 9.x migrations re-entrantJacek2021-08-0314-11/+190
|
* SONAR-15142 - Log Permission, Plugin, Secret Key, License and SettingsBelen Pruvost2021-07-271-1/+1
|
* SONAR-15142 Persisting audits for User operationsBelen Pruvost2021-07-275-2/+122
|
* Fix code smell: add package-info.javaZipeng WU2021-07-091-0/+24
|
* SONAR-10762 Drop custom metrics and measures data from tables: `metrics`, ↵Jacek2021-07-0715-14/+770
| | | | 'project_measures', 'live_measures'
* SONAR-10762 Drop manual measures tableZipeng WU2021-07-079-0/+290
|
* SONAR-15060 Database migration dropping index should not fail when index ↵Duarte Meneses2021-06-293-5/+8
| | | | does not exist
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'snapshots' tableJacek2021-06-1712-3/+309
|
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'issues' tableJacek2021-06-1712-3/+367
|
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'events' tableJacek2021-06-1712-3/+300
|
* SONAR-14792 Fix issue on Oracle DB by recreating PK for 'ce_activity'Jacek2021-06-1713-38/+296
| | | | | | When switching from ID to UUID for 'ce_activity' table, it has been forgotten to drop unique index on UUID, though PK has been created. In all DBs it worked well, but for Oracle already existing index has been associated with PK (worked well on upgrade path). When new schema has been introduced, that's not the case, as for Oracle when creating PK, unique index also will be created. That means we tried to create another index on top of PK index, which was causing failures. To fix that issue previous UUID index will be dropped and PK will be recreated, so that we end with clean state.
* SONAR-14792 Add 9.0 nop migration to not enforce DB downgradeJacek2021-06-167-1/+186
|
* SONAR-14792 Code smell fixesJacek2021-06-161-120/+132
|
* SONAR-14792 Drop `newLenientVarcharBuilder` method from initial schemaJacek2021-06-161-150/+143
|
* SONAR-14792 Fix PopulateInitialSchemaTestJacek2021-06-163-1050/+972
|
* SONAR-14792 cleanup CreateInitialSchema to be 9.0Jacek2021-06-163-251/+450
|
* SONAR-14792 Drop not existing tables from init schemaJacek2021-06-163-204/+50
|
* SONAR-14792 Bump min upgrade version to current LTSJacek2021-06-161-1/+1
|
* SONAR-14792 Drop migration classes prior 8.9Jacek2021-06-161417-63888/+2
|
* SONAR-14792 Move MsSQL helper out specific DB migration versionJacek2021-06-165-27/+5
|
* SONAR-14882 Remove Staxmate and Woodstox dependencies from plugin APIJulien HENRY2021-05-281-0/+1
|
* SONAR-14682 - Make webhook validation configurableBelen Pruvost2021-04-298-500/+0
|
* SONAR-14078 fix duplication of notification keys after upgrading to ↵Zipeng WU2021-04-222-0/+39
| | | | SonarQube 8.4+
* SONAR-14571 add index on WEBHOOK_UUID in WEBHOOK_DELIVERIESMichal Duda2021-04-224-1/+127
|
* SONAR-14693 fix error when setting a new code period reference branchMichal Duda2021-04-214-1/+146
|
* SONAR-14686 - Fail silently on PK to be dropped not foundBelen Pruvost2021-04-2133-140/+122
|
* SONAR-13849 handle multi-schema during database upgrade & data migrationZipeng WU2021-04-202-9/+19
|
* SONAR-12323 clear GitHub endpoint setting at project levelMichal Duda2021-04-164-1/+160
|
* SONAR-14699 add index on components.main_branch_project_uuidPierre2021-04-164-1/+156
|
* SONAR-14691 - Fix 4122 DB migration for repeated projects in appsBelen Pruvost2021-04-162-6/+43
|
* SONAR-14682 - Filtering local network interfaces on webhooksBelen Pruvost2021-04-148-2/+344
|
* SONAR-14681 improve project_measures metric purge performanceBelen Pruvost2021-04-139-32/+300
|
* SONAR-14681 improve live_measures metric purge performancePierre2021-04-135-153/+88
|