Add legacy domain history model, remove some dead code, fix domain update xml #2693

This commit is contained in:
Martin Lensment 2015-08-12 17:58:49 +03:00
parent e42a50dc4c
commit dddc3207b9
4 changed files with 10 additions and 6 deletions

View file

@ -0,0 +1,7 @@
module Legacy
class DomainHistory < Db
self.table_name = :domain_history
belongs_to :domain, foreign_key: :id
end
end