mailr/db/migrate/20110816120258_remove_msgs_update_from_messages.rb
Wojciech Todryk 217c7a2288 contacts done
2011-08-16 20:05:58 +02:00

10 lines
206 B
Ruby
Executable file

class RemoveMsgsUpdateFromMessages < ActiveRecord::Migration
def self.up
remove_column :folders, :msgs_updated_at
end
def self.down
add_column :folders, :msgs_updated_at, :datetime
end
end