From e0bb9376e4ecba02fab690f62e19b73070a77619 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 11 Jul 2011 11:59:40 +0200 Subject: [PATCH] Test automation of upgrade tests - db migration should fail --- .../main/webapp/WEB-INF/db/migrate/203_drop_plugin_tables.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5