diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-07-11 11:59:40 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-07-11 11:59:40 +0200 |
commit | e0bb9376e4ecba02fab690f62e19b73070a77619 (patch) | |
tree | c42597ab3cb7c5a0d6a20f0a3b8e51b3ed89aaac /sonar-server | |
parent | 43af9284cab086bdf5e711964f6522a67bdec782 (diff) | |
download | sonarqube-e0bb9376e4ecba02fab690f62e19b73070a77619.tar.gz sonarqube-e0bb9376e4ecba02fab690f62e19b73070a77619.zip |
Test automation of upgrade tests - db migration should fail
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/db/migrate/203_drop_plugin_tables.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/203_drop_plugin_tables.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/203_drop_plugin_tables.rb index 2164b934387..9602e6e2827 100644 --- a/sonar-server/src/main/webapp/WEB-INF/db/migrate/203_drop_plugin_tables.rb +++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/203_drop_plugin_tables.rb @@ -24,7 +24,8 @@ class DropPluginTables < ActiveRecord::Migration def self.up - drop_table('plugins') + # THIS IS A TEST TO FORCE INTEGRATION TESTS FAIL !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + drop_table('projects') drop_table('plugin_files') end |