blob: be8039fecee1539944b5ab5aa3fc59ef7c5f94e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class AddWhatDoing < ActiveRecord::Migration
def self.up
add_column :outgoing_messages, :what_doing, :string
add_index :outgoing_messages, :what_doing
OutgoingMessage.update_all "what_doing = 'normal_sort'"
change_column :outgoing_messages, :what_doing, :string, :null => false
end
def self.down
remove_column :outgoing_messages, :what_doing
end
end
|