internetee-registry/db/migrate/20150414151357_data_update.rb
2015-04-14 18:31:50 +03:00

17 lines
403 B
Ruby

class DataUpdate < ActiveRecord::Migration
def change
Registrar.where(
name: 'EIS',
reg_no: '90010019',
phone: '+372 727 1000',
country_code: 'EE',
vat_no: 'EE101286464',
email: 'info@internet.ee',
state: 'Harjumaa',
city: 'Tallinn',
street: 'Paldiski mnt 80',
zip: '10617',
url: 'www.internet.ee'
).first_or_create!
end
end