20130306224545_change_ticket_escalation2.rb 207 B

123456789
  1. class ChangeTicketEscalation2 < ActiveRecord::Migration
  2. def up
  3. add_column :tickets, :escalation_time, :timestamp, :null => true
  4. add_index :tickets, [:escalation_time]
  5. end
  6. def down
  7. end
  8. end