]> source.dussan.org Git - sonarqube.git/commit
SONAR-7780 Fix migration of PROJECTS.UUID_PATH
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 1 Jul 2016 13:07:23 +0000 (15:07 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 4 Jul 2016 08:25:06 +0000 (10:25 +0200)
commit1cc993f6dae7a22df577faa7101d06dc6c594974
treef3b2cc8b3a1f45f29dae4bfd0c1c284dde31dcb5
parentc2e857e42a85a723a08cd1344930c62f6bce5972
SONAR-7780 Fix migration of PROJECTS.UUID_PATH
36 files changed:
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1255_add_uuid_path_column_to_projects.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1255_fix_project_uuid_of_developers.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1256_add_uuid_path_column_to_projects.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1256_populate_uuid_path_column_on_projects.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1257_make_uuid_path_column_not_null_on_projects.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1257_populate_uuid_path_column_on_projects.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1258_make_uuid_path_column_not_null_on_projects.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1258_remove_users_password_when_not_local.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1259_add_profile_key_to_activities.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1259_remove_users_password_when_not_local.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1260_add_profile_key_to_activities.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1260_populate_profile_key_of_activities.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1261_make_profile_key_not_null_on_activities.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1261_populate_profile_key_of_activities.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1262_add_user_updated_at_to_rules_profiles.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1262_make_profile_key_not_null_on_activities.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1263_add_user_updated_at_to_rules_profiles.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1263_populate_user_updated_at_of_rules_profiles.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1264_add_analysis_uuid_column_to_measures.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1264_populate_user_updated_at_of_rules_profiles.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1265_add_analysis_uuid_column_to_measures.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1265_populate_analysis_uuid_on_measures.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1266_clean_measures_with_null_analysis_uuid.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1266_populate_analysis_uuid_on_measures.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1267_clean_measures_with_null_analysis_uuid.rb [new file with mode: 0644]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1267_make_analysis_uuid_not_null_on_measures.rb [deleted file]
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1268_make_analysis_uuid_not_null_on_measures.rb [new file with mode: 0644]
sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java
sonar-db/src/main/java/org/sonar/db/version/MigrationStepModule.java
sonar-db/src/main/java/org/sonar/db/version/v60/FixProjectUuidOfDevelopers.java [new file with mode: 0644]
sonar-db/src/main/java/org/sonar/db/version/v60/PopulateUuidPathColumnOnProjects.java
sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql
sonar-db/src/test/java/org/sonar/db/version/MigrationStepModuleTest.java
sonar-db/src/test/java/org/sonar/db/version/v60/FixProjectUuidOfDevelopersTest.java [new file with mode: 0644]
sonar-db/src/test/java/org/sonar/db/version/v60/PopulateUuidPathColumnOnProjectsTest.java
sonar-db/src/test/resources/org/sonar/db/version/v60/FixProjectUuidOfDevelopersTest/in_progress_projects.sql [new file with mode: 0644]