Sha256: 62ec552948702d074b0a4a78c2546349f33a2222284e86dc0f016f4795557e6b

Contents?: true

Size: 364 Bytes

Versions: 18

Compression:

Stored size: 364 Bytes

Contents

class RemoveEstimatedEffortAndEstimatedValueFromTickets < ActiveRecord::Migration
  def up
    remove_column :tickets, :estimated_effort
    remove_column :tickets, :estimated_value
  end

  def down
    add_column :tickets, :estimated_effort, :decimal, precision: 9, scale: 2
    add_column :tickets, :estimated_value, :decimal, precision: 11, scale: 2
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
houston-core-0.8.0.pre db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.7.0 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.7.0.beta4 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.7.0.beta3 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.7.0.beta2 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.7.0.beta db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.6.3 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.6.2 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.6.1 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.6.0 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.6 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.5 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.4 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.3 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.2 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.1 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.0 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb
houston-core-0.5.0.beta1 db/migrate/20130119211540_remove_estimated_effort_and_estimated_value_from_tickets.rb