Merge branch 'improve-registrar' into registry-267

# Conflicts:
#	db/schema-read-only.rb
#	db/structure.sql
This commit is contained in:
Artur Beljajev 2016-12-28 15:31:04 +02:00
commit 5c6a0034f6
15 changed files with 316 additions and 22 deletions

View file

@ -0,0 +1,6 @@
class AddHashToLegalDoc < ActiveRecord::Migration
def change
add_column :legal_documents, :checksum, :string
add_index :legal_documents, :checksum
end
end