1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-08-08 14:11:04 +02:00
redmine/db/migrate/069_add_issues_estimated_hours.rb
Jean-Philippe Lang 89b349818b Added 'Estimated hours' attribute on issues.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@731 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-09-15 14:54:15 +00:00

10 linhas
196 B
Ruby

class AddIssuesEstimatedHours < ActiveRecord::Migration
def self.up
add_column :issues, :estimated_hours, :float
end
def self.down
remove_column :issues, :estimated_hours
end
end