104941754-dns_nameservers_update

This commit is contained in:
Stas 2015-10-30 17:24:04 +02:00
parent 1b6badf699
commit 0d251a1a40
3 changed files with 15 additions and 2 deletions

View file

@ -0,0 +1,12 @@
module Legacy
class ObjectHistory < Db
self.table_name = :object_history
belongs_to :object_registry, foreign_key: :historyid
def self.instance_method_already_implemented?(method_name)
return true if method_name == 'update'
super
end
end
end