Merge branch '114677695-idn_support' into staging

This commit is contained in:
Stas 2016-05-03 16:52:20 +03:00
commit bc2e3fce3d
3 changed files with 62 additions and 1 deletions

View file

@ -0,0 +1,9 @@
class AddPunyHostnameToNameserver < ActiveRecord::Migration
def change
add_column :nameservers, :hostname_puny, :string
execute "UPDATE nameservers n SET hostname_puny = n.hostname"
end
end