Added migration to remove updated_at from Activity [fixes SCI-1145]

This commit is contained in:
osboxes.org 2017-05-09 14:14:01 +02:00
parent 41df727e57
commit cd6bae6e35

View file

@ -0,0 +1,5 @@
class RemoveUpdatedAtFromActivity < ActiveRecord::Migration
def change
remove_column :activities, :updated_at, :datetime
end
end