9 lines
161 B
Ruby
9 lines
161 B
Ruby
# encoding: UTF-8
|
|
# frozen_string_literal: true
|
|
|
|
class RemoveKnowYourCustomer < ActiveRecord::Migration[4.2]
|
|
def change
|
|
drop_table :id_documents
|
|
end
|
|
end
|