Merge remote-tracking branch 'origin/105846070-merge-with-105842700-arireg-for-registrant-port' into staging

# Conflicts:
#	app/models/domain.rb
This commit is contained in:
Vladimir Krylov 2016-01-18 13:09:53 +02:00
commit 5473f72d7f
37 changed files with 2059 additions and 30 deletions

View file

@ -0,0 +1,13 @@
class CreateBusinessRegistryCaches < ActiveRecord::Migration
def change
create_table :business_registry_caches do |t|
t.string :ident
t.string :ident_country_code
t.datetime :retrieved_on
t.string :associated_businesses, array: true
t.timestamps null: false
end
add_index :business_registry_caches, :ident
end
end