mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
18 lines
450 B
Ruby
18 lines
450 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',
|
|
# code: 'EIS'
|
|
# ).first_or_create!
|
|
end
|
|
end
|