From b5f2e80885615ffc3d3734e3f0e2d4fe78889482 Mon Sep 17 00:00:00 2001 From: Sébastien Lesaint Date: Tue, 13 Sep 2016 11:47:43 +0200 Subject: SONAR-8025 rewrite create table CE_TASK_INPUT in java --- .../webapp/WEB-INF/db/migrate/1302_create_table_ce_task_input.rb | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'server/sonar-web/src/main/webapp') diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1302_create_table_ce_task_input.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1302_create_table_ce_task_input.rb index 2beae9f27d8..a39d3026b82 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1302_create_table_ce_task_input.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1302_create_table_ce_task_input.rb @@ -24,12 +24,6 @@ class CreateTableCeTaskInput < ActiveRecord::Migration def self.up - create_table 'ce_task_input', :id => false do |t| - t.column 'task_uuid', :string, :limit => 40, :null => false - t.column 'data', :binary, :null => true - t.column 'created_at', :big_integer, :null => false - t.column 'updated_at', :big_integer, :null => false - end - add_primary_key 'ce_task_input', 'task_uuid' + execute_java_migration('org.sonar.db.version.v61.CreateTableCeTaskInput') end end -- cgit v1.2.3