mirror of
https://github.com/internetee/registry.git
synced 2025-07-29 14:06:21 +02:00
11 lines
257 B
Ruby
11 lines
257 B
Ruby
class DropLogLegalDocuments < ActiveRecord::Migration[6.0]
|
|
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
|