mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 20:18:22 +02:00
11 lines
252 B
Ruby
11 lines
252 B
Ruby
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
|