Merge branch '105839906-reduce-history-of-db-objects' into staging

This commit is contained in:
Vladimir Krylov 2015-11-17 14:48:26 +02:00
commit b93cdc29bf
4 changed files with 31 additions and 19 deletions

View file

@ -0,0 +1,11 @@
class DropLogLegalDocuments < ActiveRecord::Migration
def up
drop_table :log_legal_documents
remove_column :legal_documents, :updated_at
remove_column :legal_documents, :updator_str
end
def down
# we don't want it back
end
end