Map legacy contact fields to contact

This commit is contained in:
Martin Lensment 2015-02-27 18:13:03 +02:00 committed by Priit Tark
parent a598b46723
commit 9cd4bad3a9
5 changed files with 77 additions and 40 deletions

View file

@ -0,0 +1,10 @@
module Legacy
class Object < Db
self.table_name = :object
def self.instance_method_already_implemented?(method_name)
return true if method_name == 'update'
super
end
end
end