mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 19:36:00 +01:00
10 lines
196 B
Ruby
10 lines
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
|