diff options
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/db/migrate/141_add_rule_failures_cost.rb (renamed from sonar-server/src/main/webapp/WEB-INF/db/migrate/141_add_rule_failures_points.rb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/db/migrate/141_add_rule_failures_points.rb b/sonar-server/src/main/webapp/WEB-INF/db/migrate/141_add_rule_failures_cost.rb index e3df02105b1..c2cf2737298 100644 --- a/sonar-server/src/main/webapp/WEB-INF/db/migrate/141_add_rule_failures_points.rb +++ b/sonar-server/src/main/webapp/WEB-INF/db/migrate/141_add_rule_failures_cost.rb @@ -17,10 +17,10 @@ # License along with Sonar; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 # -class AddRuleFailuresPoints < ActiveRecord::Migration +class AddRuleFailuresCost < ActiveRecord::Migration def self.up - add_column 'rule_failures', 'points', :decimal, :null => true, :precision => 30, :scale => 20 + add_column 'rule_failures', 'cost', :decimal, :null => true, :precision => 30, :scale => 20 end end |