diff --git a/db/schema.rb b/db/schema.rb index 614fe9ae6..6a889a676 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -29,6 +29,7 @@ ActiveRecord::Schema.define(version: 20150213104014) do t.string "creator_str" t.string "updator_str" t.string "country_code" + t.string "state" end create_table "api_users", force: :cascade do |t| diff --git a/db/seeds.rb b/db/seeds.rb index ec49d6dbd..15d20166b 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -4,7 +4,10 @@ registrar1 = Registrar.where( name: 'Registrar First AS', reg_no: '10300220', - address: 'Pärnu mnt 2, Tallinna linn, Harju maakond, 11415', + street: 'Pärnu mnt 2', + city: 'Tallinn', + state: 'Harju maakond', + zip: '11415', email: 'registrar1@example.com', country_code: 'EE' ).first_or_create! @@ -19,7 +22,10 @@ ApiUser.where( registrar2 = Registrar.where( name: 'Registrar Second AS', reg_no: '10529229', - address: 'Vabaduse pst 32, 11316 Tallinn', + street: 'Vabaduse pst 32', + city: 'Tallinn', + state: 'Harju maakond', + zip: '11315', email: 'registrar2@example.com', country_code: 'EE' ).first_or_create!