blob: 2ede40603a74f23868d1d07f2861907fdd6c4cc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- encoding : utf-8 -*-
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
|