20130606070432_sla_timezone.rb 190 B

123456789
  1. class SlaTimezone < ActiveRecord::Migration
  2. def up
  3. add_column :slas, :timezone, :string, :limit => 50, :null => true
  4. end
  5. def down
  6. remove_column :slas, :timezone
  7. end
  8. end