addresses 1.0.9 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ebd3df93e546cb297b7ccbd4b99e13b533388b0baa18d4389f89fb4c763b8b7e
4
- data.tar.gz: 1b07cc43e10f1283b7212795228e31127c50e3aad0da0e4586189d02dbd26dba
3
+ metadata.gz: ce24859f837728c731c1f525ae581e7a506a99567d6ab8d6a237379ff00c8aa1
4
+ data.tar.gz: 4a62c35b2c08fbab8e19324d127baa94e1e84400b0006e7d3b3c77daccac80fc
5
5
  SHA512:
6
- metadata.gz: ea2c1e59376369d69e34449f51339a2750749a9d03c35c88cf76df63ad3d7a49db31041c259485b237a7b30974c406286c2604523801517bab98b541b8a9730a
7
- data.tar.gz: b47605f7c0e9b08aed7ea26490d023cbcfd952971e020d6de00a92595ea0e55437acf719c72f3afe21889217c89f15f78b7102523a0919c69f6517e608973304
6
+ metadata.gz: 8e75c42e760a83ab67a9e9bf96120a51d5d51732b14fe0a1f4772ced519277f5f501f4b7057fcca2e527c34bb4e9f294a24639bd58edbdcd1b74b6b8ad0b99ae
7
+ data.tar.gz: 3fe3a286ef02116c18b5add0e457f8d5da27e410f2add3a2f625eb480baed9259381b511c4a5e312716ea1d73341007a6d20df1d092b577effda98921bcd6cb5
@@ -3,12 +3,7 @@ require_dependency "addresses/application_controller"
3
3
  module Addresses
4
4
  class CitiesController < ApplicationController
5
5
  def index
6
- if State.exists?(params[:state_id])
7
- @state = State.find(params[:state_id])
8
- @cities = @state.cities.order("name asc")
9
- else
10
- @cities = City.filter(params)
11
- end
6
+ @cities = City.filter(params)
12
7
 
13
8
  render json: @cities
14
9
  end
@@ -4,24 +4,29 @@ module Addresses
4
4
 
5
5
  has_many :neighborhoods
6
6
 
7
- def self.filter(params = {})
8
- query_word = 'like'
7
+ class << self
8
+ def filter(params = {})
9
+ return [] if params[:state_id].blank? && params[:name].blank?
9
10
 
10
- query_word = 'ilike' if adapter == 'postgresql'
11
+ cities = City.order('name asc')
11
12
 
12
- cities = City.order('name asc')
13
-
14
- cities = cities.where("name #{query_word} ?", "%#{params[:name]}%") if params[:name]
13
+ cities = cities.where('state_id = ?', params[:state_id]) if params[:state_id]
14
+ cities = cities.where("name #{query_word} ?", "%#{params[:name]}%") if params[:name]
15
15
 
16
- cities
17
- end
16
+ cities
17
+ end
18
+
19
+ private
18
20
 
19
- private
21
+ def query_word
22
+ adapter == 'postgresql' ? 'ilike' : 'like'
23
+ end
20
24
 
21
- def self.adapter
22
- ActiveRecord::Base.connection.instance_values["config"][:adapter]
23
- rescue
24
- nil
25
+ def adapter
26
+ ActiveRecord::Base.connection.instance_values["config"][:adapter]
27
+ rescue
28
+ nil
29
+ end
25
30
  end
26
31
  end
27
32
  end
@@ -20,7 +20,7 @@ RSpec.describe Addresses::CitiesController, type: :controller do
20
20
  before { get :index, params: { format: :json } }
21
21
 
22
22
  it { expect(response).to have_http_status(:success) }
23
- it { expect(assigns(:cities)).to eq([city, city2]) }
23
+ it { expect(assigns(:cities)).to eq([]) }
24
24
  end
25
25
 
26
26
  describe "GET #index with search by name" do
@@ -0,0 +1,13 @@
1
+ # encoding: utf-8
2
+ # This migration comes from addresses (originally 20140327141509)
3
+
4
+ class CreateAddressesCountries < ActiveRecord::Migration
5
+ def change
6
+ create_table :addresses_countries do |t|
7
+ t.string :name
8
+ t.string :acronym
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ # encoding: utf-8
2
+ # This migration comes from addresses (originally 20140327141509)
3
+
4
+ class CreateAddressesCountries < ActiveRecord::Migration[4.2]
5
+ def change
6
+ create_table :addresses_countries do |t|
7
+ t.string :name
8
+ t.string :acronym
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ # encoding: utf-8
2
+ # This migration comes from addresses (originally 20140327163801)
3
+
4
+ class CreateAddressesStates < ActiveRecord::Migration[4.2]
5
+ def change
6
+ create_table :addresses_states do |t|
7
+ t.string :name
8
+ t.string :acronym
9
+ t.references :country, index: true
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,13 @@
1
+ # encoding: utf-8
2
+ # This migration comes from addresses (originally 20140327171527)
3
+
4
+ class CreateAddressesCities < ActiveRecord::Migration[4.2]
5
+ def change
6
+ create_table :addresses_cities do |t|
7
+ t.string :name
8
+ t.references :state, index: true
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ # encoding: utf-8
2
+ # This migration comes from addresses (originally 20140327190411)
3
+
4
+ class CreateAddressesNeighborhoods < ActiveRecord::Migration[4.2]
5
+ def change
6
+ create_table :addresses_neighborhoods do |t|
7
+ t.references :city, index: true
8
+ t.string :name
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,17 @@
1
+ # This migration comes from addresses (originally 20140328120418)
2
+ class CreateAddressesAddresses < ActiveRecord::Migration[4.2]
3
+ def change
4
+ create_table :addresses_addresses do |t|
5
+ t.string :street
6
+ t.string :number
7
+ t.string :complement
8
+ t.references :city, index: true
9
+ t.references :neighborhood, index: true
10
+ t.string :zipcode
11
+ t.integer :addressable_id, index: true
12
+ t.string :addressable_type
13
+
14
+ t.timestamps
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,13 @@
1
+ # This migration comes from addresses (originally 20160920172944)
2
+ class CreateAddressesZipcodes < ActiveRecord::Migration[5.0]
3
+ def change
4
+ create_table :addresses_zipcodes do |t|
5
+ t.string :street
6
+ t.references :city, index: true
7
+ t.references :neighborhood, index: true
8
+ t.string :number
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,11 @@
1
+ # This migration comes from addresses (originally 20160920174406)
2
+ class RemoveZipcodeAttributesFromAddresses < ActiveRecord::Migration[5.0]
3
+ def change
4
+ remove_column :addresses_addresses, :street, :string
5
+ remove_reference :addresses_addresses, :city, index: true
6
+ remove_reference :addresses_addresses, :neighborhood, index: true
7
+ remove_column :addresses_addresses, :zipcode, :string
8
+
9
+ add_reference :addresses_addresses, :zipcode, index: true
10
+ end
11
+ end
@@ -13,7 +13,7 @@ RSpec.describe Addresses::City, :type => :model do
13
13
  let!(:city) { create :city, state: state, name: 'Natal' }
14
14
  let!(:city2) { create :city, state: state2, name: 'São Paulo' }
15
15
 
16
- it { expect(Addresses::City.filter.all).to eq([city, city2]) }
16
+ it { expect(Addresses::City.filter).to eq([]) }
17
17
  it { expect(Addresses::City.filter(name: 'paulo').all).to eq([city2]) }
18
18
  end
19
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: addresses
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilbert Ribeiro
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-04-26 00:00:00.000000000 Z
12
+ date: 2019-06-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -144,9 +144,16 @@ files:
144
144
  - spec/dummy/config/locales/en.yml
145
145
  - spec/dummy/config/locales/pt-BR.yml
146
146
  - spec/dummy/config/routes.rb
147
+ - spec/dummy/db/migrate/20190614190716_create_addresses_countries.addresses.rb
148
+ - spec/dummy/db/migrate/20190614190958_create_addresses_countries.addresses.rb
149
+ - spec/dummy/db/migrate/20190614190959_create_addresses_states.addresses.rb
150
+ - spec/dummy/db/migrate/20190614190960_create_addresses_cities.addresses.rb
151
+ - spec/dummy/db/migrate/20190614190961_create_addresses_neighborhoods.addresses.rb
152
+ - spec/dummy/db/migrate/20190614190962_create_addresses_addresses.addresses.rb
153
+ - spec/dummy/db/migrate/20190614190963_create_addresses_zipcodes.addresses.rb
154
+ - spec/dummy/db/migrate/20190614190964_remove_zipcode_attributes_from_addresses.addresses.rb
147
155
  - spec/dummy/db/schema.rb
148
156
  - spec/dummy/db/test.sqlite3
149
- - spec/dummy/log/test.log
150
157
  - spec/dummy/public/404.html
151
158
  - spec/dummy/public/422.html
152
159
  - spec/dummy/public/500.html
@@ -243,8 +250,15 @@ test_files:
243
250
  - spec/dummy/public/404.html
244
251
  - spec/dummy/db/schema.rb
245
252
  - spec/dummy/db/test.sqlite3
253
+ - spec/dummy/db/migrate/20190614190959_create_addresses_states.addresses.rb
254
+ - spec/dummy/db/migrate/20190614190960_create_addresses_cities.addresses.rb
255
+ - spec/dummy/db/migrate/20190614190963_create_addresses_zipcodes.addresses.rb
256
+ - spec/dummy/db/migrate/20190614190964_remove_zipcode_attributes_from_addresses.addresses.rb
257
+ - spec/dummy/db/migrate/20190614190961_create_addresses_neighborhoods.addresses.rb
258
+ - spec/dummy/db/migrate/20190614190716_create_addresses_countries.addresses.rb
259
+ - spec/dummy/db/migrate/20190614190958_create_addresses_countries.addresses.rb
260
+ - spec/dummy/db/migrate/20190614190962_create_addresses_addresses.addresses.rb
246
261
  - spec/dummy/Gemfile
247
- - spec/dummy/log/test.log
248
262
  - spec/dummy/Gemfile.lock
249
263
  - spec/dummy/README.rdoc
250
264
  - spec/models/addresses/country_spec.rb
@@ -1,782 +0,0 @@
1
-  (0.5ms) begin transaction
2
-  (0.1ms) rollback transaction
3
-  (0.0ms) begin transaction
4
-  (0.1ms) rollback transaction
5
-  (0.0ms) begin transaction
6
-  (0.1ms) rollback transaction
7
-  (0.1ms) begin transaction
8
-  (0.0ms) rollback transaction
9
-  (0.0ms) begin transaction
10
-  (0.1ms) SAVEPOINT active_record_1
11
- SQL (1.4ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
12
-  (0.1ms) RELEASE SAVEPOINT active_record_1
13
-  (0.1ms) SAVEPOINT active_record_1
14
- SQL (1.0ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
15
-  (0.1ms) RELEASE SAVEPOINT active_record_1
16
-  (1.0ms) SAVEPOINT active_record_1
17
- SQL (0.6ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
18
-  (0.1ms) RELEASE SAVEPOINT active_record_1
19
-  (0.1ms) SAVEPOINT active_record_1
20
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
21
-  (0.0ms) RELEASE SAVEPOINT active_record_1
22
-  (0.0ms) SAVEPOINT active_record_1
23
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
24
-  (0.0ms) RELEASE SAVEPOINT active_record_1
25
-  (0.0ms) SAVEPOINT active_record_1
26
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
27
-  (0.1ms) RELEASE SAVEPOINT active_record_1
28
-  (0.1ms) SAVEPOINT active_record_1
29
- SQL (0.3ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 2], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
30
-  (0.9ms) RELEASE SAVEPOINT active_record_1
31
-  (0.1ms) SAVEPOINT active_record_1
32
- SQL (1.2ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
33
-  (0.1ms) RELEASE SAVEPOINT active_record_1
34
-  (0.2ms) SAVEPOINT active_record_1
35
- SQL (0.5ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC], ["zipcode_id", 1]]
36
-  (0.1ms) RELEASE SAVEPOINT active_record_1
37
-  (0.1ms) SAVEPOINT active_record_1
38
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
39
-  (0.0ms) RELEASE SAVEPOINT active_record_1
40
-  (0.0ms) SAVEPOINT active_record_1
41
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
42
-  (0.0ms) RELEASE SAVEPOINT active_record_1
43
-  (0.0ms) SAVEPOINT active_record_1
44
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
45
-  (0.0ms) RELEASE SAVEPOINT active_record_1
46
-  (0.0ms) SAVEPOINT active_record_1
47
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
48
-  (0.1ms) RELEASE SAVEPOINT active_record_1
49
-  (0.0ms) SAVEPOINT active_record_1
50
- SQL (0.5ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 4], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
51
-  (0.1ms) RELEASE SAVEPOINT active_record_1
52
-  (0.1ms) SAVEPOINT active_record_1
53
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 4], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
54
-  (0.1ms) RELEASE SAVEPOINT active_record_1
55
-  (0.1ms) SAVEPOINT active_record_1
56
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 4], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
57
-  (0.1ms) RELEASE SAVEPOINT active_record_1
58
-  (0.1ms) SAVEPOINT active_record_1
59
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 3], ["neighborhood_id", 2], ["number", "12345678"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
60
-  (0.4ms) RELEASE SAVEPOINT active_record_1
61
-  (0.7ms) rollback transaction
62
-  (0.1ms) begin transaction
63
-  (0.0ms) SAVEPOINT active_record_1
64
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
65
-  (0.0ms) RELEASE SAVEPOINT active_record_1
66
-  (0.0ms) SAVEPOINT active_record_1
67
- SQL (0.4ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
68
-  (0.1ms) RELEASE SAVEPOINT active_record_1
69
-  (0.0ms) SAVEPOINT active_record_1
70
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
71
-  (0.0ms) RELEASE SAVEPOINT active_record_1
72
-  (0.0ms) SAVEPOINT active_record_1
73
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
74
-  (0.0ms) RELEASE SAVEPOINT active_record_1
75
-  (0.0ms) SAVEPOINT active_record_1
76
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
77
-  (0.0ms) RELEASE SAVEPOINT active_record_1
78
-  (0.0ms) SAVEPOINT active_record_1
79
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
80
-  (0.0ms) RELEASE SAVEPOINT active_record_1
81
-  (0.0ms) SAVEPOINT active_record_1
82
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 2], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
83
-  (0.0ms) RELEASE SAVEPOINT active_record_1
84
-  (0.0ms) SAVEPOINT active_record_1
85
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
86
-  (0.0ms) RELEASE SAVEPOINT active_record_1
87
-  (0.0ms) SAVEPOINT active_record_1
88
- SQL (0.3ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC], ["zipcode_id", 1]]
89
-  (0.0ms) RELEASE SAVEPOINT active_record_1
90
-  (0.0ms) SAVEPOINT active_record_1
91
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
92
-  (0.0ms) RELEASE SAVEPOINT active_record_1
93
-  (0.0ms) SAVEPOINT active_record_1
94
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
95
-  (0.0ms) RELEASE SAVEPOINT active_record_1
96
-  (0.0ms) SAVEPOINT active_record_1
97
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
98
-  (0.0ms) RELEASE SAVEPOINT active_record_1
99
-  (0.1ms) SAVEPOINT active_record_1
100
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
101
-  (0.0ms) RELEASE SAVEPOINT active_record_1
102
-  (0.0ms) SAVEPOINT active_record_1
103
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 4], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
104
-  (0.0ms) RELEASE SAVEPOINT active_record_1
105
-  (0.0ms) SAVEPOINT active_record_1
106
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 4], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
107
-  (0.0ms) RELEASE SAVEPOINT active_record_1
108
-  (0.0ms) SAVEPOINT active_record_1
109
- SQL (0.1ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 4], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
110
-  (0.0ms) RELEASE SAVEPOINT active_record_1
111
-  (0.0ms) SAVEPOINT active_record_1
112
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 3], ["neighborhood_id", 2], ["number", "12345678"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC]]
113
-  (0.0ms) RELEASE SAVEPOINT active_record_1
114
-  (0.6ms) rollback transaction
115
-  (0.5ms) begin transaction
116
-  (0.1ms) rollback transaction
117
-  (0.0ms) begin transaction
118
-  (0.1ms) rollback transaction
119
-  (0.1ms) begin transaction
120
-  (0.1ms) SAVEPOINT active_record_1
121
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
122
-  (0.0ms) RELEASE SAVEPOINT active_record_1
123
-  (1.0ms) SAVEPOINT active_record_1
124
- SQL (0.4ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
125
-  (0.1ms) RELEASE SAVEPOINT active_record_1
126
-  (0.1ms) SAVEPOINT active_record_1
127
- SQL (0.4ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
128
-  (0.1ms) RELEASE SAVEPOINT active_record_1
129
-  (0.1ms) SAVEPOINT active_record_1
130
- SQL (0.6ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
131
-  (0.1ms) RELEASE SAVEPOINT active_record_1
132
-  (0.1ms) SAVEPOINT active_record_1
133
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
134
-  (0.1ms) RELEASE SAVEPOINT active_record_1
135
-  (0.0ms) SAVEPOINT active_record_1
136
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
137
-  (0.1ms) RELEASE SAVEPOINT active_record_1
138
-  (1.2ms) SAVEPOINT active_record_1
139
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
140
-  (0.1ms) RELEASE SAVEPOINT active_record_1
141
-  (0.1ms) SAVEPOINT active_record_1
142
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
143
-  (0.1ms) RELEASE SAVEPOINT active_record_1
144
-  (0.0ms) SAVEPOINT active_record_1
145
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
146
-  (0.1ms) RELEASE SAVEPOINT active_record_1
147
-  (0.1ms) SAVEPOINT active_record_1
148
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
149
-  (0.1ms) RELEASE SAVEPOINT active_record_1
150
-  (0.1ms) SAVEPOINT active_record_1
151
- SQL (0.4ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
152
-  (0.1ms) RELEASE SAVEPOINT active_record_1
153
-  (0.0ms) SAVEPOINT active_record_1
154
- SQL (0.2ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
155
-  (0.1ms) RELEASE SAVEPOINT active_record_1
156
-  (0.0ms) SAVEPOINT active_record_1
157
- SQL (0.4ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 2]]
158
-  (0.1ms) RELEASE SAVEPOINT active_record_1
159
-  (0.0ms) SAVEPOINT active_record_1
160
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 1]]
161
-  (0.0ms) RELEASE SAVEPOINT active_record_1
162
-  (1.6ms) rollback transaction
163
-  (0.1ms) begin transaction
164
-  (0.0ms) SAVEPOINT active_record_1
165
- SQL (0.5ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
166
-  (0.0ms) RELEASE SAVEPOINT active_record_1
167
-  (0.0ms) SAVEPOINT active_record_1
168
- SQL (0.3ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
169
-  (0.0ms) RELEASE SAVEPOINT active_record_1
170
-  (0.0ms) SAVEPOINT active_record_1
171
- SQL (0.3ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
172
-  (0.1ms) RELEASE SAVEPOINT active_record_1
173
-  (0.0ms) SAVEPOINT active_record_1
174
- SQL (0.4ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
175
-  (0.1ms) RELEASE SAVEPOINT active_record_1
176
-  (0.1ms) SAVEPOINT active_record_1
177
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
178
-  (0.0ms) RELEASE SAVEPOINT active_record_1
179
-  (0.0ms) SAVEPOINT active_record_1
180
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
181
-  (0.1ms) RELEASE SAVEPOINT active_record_1
182
-  (0.0ms) SAVEPOINT active_record_1
183
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
184
-  (0.1ms) RELEASE SAVEPOINT active_record_1
185
-  (0.1ms) SAVEPOINT active_record_1
186
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
187
-  (0.0ms) RELEASE SAVEPOINT active_record_1
188
-  (0.0ms) SAVEPOINT active_record_1
189
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
190
-  (0.0ms) RELEASE SAVEPOINT active_record_1
191
-  (0.0ms) SAVEPOINT active_record_1
192
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
193
-  (0.0ms) RELEASE SAVEPOINT active_record_1
194
-  (0.0ms) SAVEPOINT active_record_1
195
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
196
-  (0.0ms) RELEASE SAVEPOINT active_record_1
197
-  (0.0ms) SAVEPOINT active_record_1
198
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC]]
199
-  (0.0ms) RELEASE SAVEPOINT active_record_1
200
-  (0.0ms) SAVEPOINT active_record_1
201
- SQL (0.3ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 2]]
202
-  (0.0ms) RELEASE SAVEPOINT active_record_1
203
-  (0.1ms) SAVEPOINT active_record_1
204
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 1]]
205
-  (0.1ms) RELEASE SAVEPOINT active_record_1
206
-  (0.8ms) rollback transaction
207
-  (0.0ms) begin transaction
208
-  (0.1ms) rollback transaction
209
-  (0.0ms) begin transaction
210
-  (0.1ms) rollback transaction
211
-  (0.4ms) begin transaction
212
-  (0.1ms) rollback transaction
213
-  (0.0ms) begin transaction
214
-  (0.1ms) rollback transaction
215
-  (0.0ms) begin transaction
216
-  (0.0ms) rollback transaction
217
-  (0.0ms) begin transaction
218
-  (0.0ms) rollback transaction
219
-  (0.0ms) begin transaction
220
-  (0.1ms) SAVEPOINT active_record_1
221
- SQL (0.7ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
222
-  (0.1ms) RELEASE SAVEPOINT active_record_1
223
-  (0.0ms) SAVEPOINT active_record_1
224
- SQL (0.3ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
225
-  (0.0ms) RELEASE SAVEPOINT active_record_1
226
-  (0.0ms) SAVEPOINT active_record_1
227
- SQL (0.3ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
228
-  (0.1ms) RELEASE SAVEPOINT active_record_1
229
-  (0.1ms) SAVEPOINT active_record_1
230
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
231
-  (0.0ms) RELEASE SAVEPOINT active_record_1
232
-  (0.0ms) SAVEPOINT active_record_1
233
- SQL (1.0ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
234
-  (0.0ms) RELEASE SAVEPOINT active_record_1
235
-  (0.0ms) SAVEPOINT active_record_1
236
- SQL (0.9ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
237
-  (0.0ms) RELEASE SAVEPOINT active_record_1
238
-  (0.0ms) SAVEPOINT active_record_1
239
- SQL (0.6ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
240
-  (0.0ms) RELEASE SAVEPOINT active_record_1
241
-  (0.1ms) SAVEPOINT active_record_1
242
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
243
-  (0.0ms) RELEASE SAVEPOINT active_record_1
244
-  (0.0ms) SAVEPOINT active_record_1
245
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
246
-  (0.0ms) RELEASE SAVEPOINT active_record_1
247
-  (0.0ms) SAVEPOINT active_record_1
248
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
249
-  (0.0ms) RELEASE SAVEPOINT active_record_1
250
-  (0.1ms) SAVEPOINT active_record_1
251
- SQL (0.4ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
252
-  (0.1ms) RELEASE SAVEPOINT active_record_1
253
-  (0.1ms) SAVEPOINT active_record_1
254
- SQL (0.2ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
255
-  (0.1ms) RELEASE SAVEPOINT active_record_1
256
-  (0.0ms) SAVEPOINT active_record_1
257
- SQL (0.4ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 2]]
258
-  (0.6ms) RELEASE SAVEPOINT active_record_1
259
-  (0.0ms) SAVEPOINT active_record_1
260
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 1]]
261
-  (0.1ms) RELEASE SAVEPOINT active_record_1
262
-  (1.7ms) rollback transaction
263
-  (0.1ms) begin transaction
264
-  (0.1ms) SAVEPOINT active_record_1
265
- SQL (0.7ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
266
-  (0.1ms) RELEASE SAVEPOINT active_record_1
267
-  (0.0ms) SAVEPOINT active_record_1
268
- SQL (0.2ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
269
-  (0.0ms) RELEASE SAVEPOINT active_record_1
270
-  (0.0ms) SAVEPOINT active_record_1
271
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
272
-  (0.0ms) RELEASE SAVEPOINT active_record_1
273
-  (0.0ms) SAVEPOINT active_record_1
274
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
275
-  (0.0ms) RELEASE SAVEPOINT active_record_1
276
-  (0.0ms) SAVEPOINT active_record_1
277
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
278
-  (0.0ms) RELEASE SAVEPOINT active_record_1
279
-  (0.0ms) SAVEPOINT active_record_1
280
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
281
-  (0.0ms) RELEASE SAVEPOINT active_record_1
282
-  (0.0ms) SAVEPOINT active_record_1
283
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
284
-  (0.0ms) RELEASE SAVEPOINT active_record_1
285
-  (0.0ms) SAVEPOINT active_record_1
286
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
287
-  (0.0ms) RELEASE SAVEPOINT active_record_1
288
-  (0.0ms) SAVEPOINT active_record_1
289
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
290
-  (0.0ms) RELEASE SAVEPOINT active_record_1
291
-  (0.0ms) SAVEPOINT active_record_1
292
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
293
-  (0.0ms) RELEASE SAVEPOINT active_record_1
294
-  (0.0ms) SAVEPOINT active_record_1
295
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
296
-  (0.1ms) RELEASE SAVEPOINT active_record_1
297
-  (0.0ms) SAVEPOINT active_record_1
298
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC]]
299
-  (0.0ms) RELEASE SAVEPOINT active_record_1
300
-  (0.0ms) SAVEPOINT active_record_1
301
- SQL (0.4ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 2]]
302
-  (0.1ms) RELEASE SAVEPOINT active_record_1
303
-  (0.0ms) SAVEPOINT active_record_1
304
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 1]]
305
-  (0.0ms) RELEASE SAVEPOINT active_record_1
306
-  (0.9ms) rollback transaction
307
-  (0.4ms) begin transaction
308
-  (0.1ms) rollback transaction
309
-  (0.1ms) begin transaction
310
-  (0.0ms) rollback transaction
311
-  (0.1ms) begin transaction
312
-  (0.1ms) rollback transaction
313
-  (0.1ms) begin transaction
314
-  (0.1ms) rollback transaction
315
-  (0.0ms) begin transaction
316
-  (0.1ms) SAVEPOINT active_record_1
317
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
318
-  (0.0ms) RELEASE SAVEPOINT active_record_1
319
-  (0.0ms) SAVEPOINT active_record_1
320
- SQL (0.2ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
321
-  (0.0ms) RELEASE SAVEPOINT active_record_1
322
-  (0.0ms) SAVEPOINT active_record_1
323
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
324
-  (0.0ms) RELEASE SAVEPOINT active_record_1
325
-  (0.0ms) SAVEPOINT active_record_1
326
- SQL (0.4ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
327
-  (0.1ms) RELEASE SAVEPOINT active_record_1
328
-  (0.0ms) SAVEPOINT active_record_1
329
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
330
-  (0.1ms) RELEASE SAVEPOINT active_record_1
331
-  (0.0ms) SAVEPOINT active_record_1
332
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
333
-  (0.1ms) RELEASE SAVEPOINT active_record_1
334
-  (0.0ms) SAVEPOINT active_record_1
335
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
336
-  (0.0ms) RELEASE SAVEPOINT active_record_1
337
-  (0.1ms) SAVEPOINT active_record_1
338
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
339
-  (0.1ms) RELEASE SAVEPOINT active_record_1
340
-  (0.0ms) SAVEPOINT active_record_1
341
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
342
-  (0.0ms) RELEASE SAVEPOINT active_record_1
343
-  (0.0ms) SAVEPOINT active_record_1
344
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
345
-  (0.0ms) RELEASE SAVEPOINT active_record_1
346
-  (0.1ms) SAVEPOINT active_record_1
347
- SQL (0.4ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
348
-  (0.1ms) RELEASE SAVEPOINT active_record_1
349
-  (0.0ms) SAVEPOINT active_record_1
350
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
351
-  (0.0ms) RELEASE SAVEPOINT active_record_1
352
-  (0.0ms) SAVEPOINT active_record_1
353
- SQL (0.3ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 2]]
354
-  (0.1ms) RELEASE SAVEPOINT active_record_1
355
-  (0.0ms) SAVEPOINT active_record_1
356
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 1]]
357
-  (0.0ms) RELEASE SAVEPOINT active_record_1
358
-  (1.7ms) rollback transaction
359
-  (0.1ms) begin transaction
360
-  (0.0ms) SAVEPOINT active_record_1
361
- SQL (0.5ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
362
-  (0.1ms) RELEASE SAVEPOINT active_record_1
363
-  (0.0ms) SAVEPOINT active_record_1
364
- SQL (0.3ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
365
-  (0.1ms) RELEASE SAVEPOINT active_record_1
366
-  (0.0ms) SAVEPOINT active_record_1
367
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
368
-  (0.0ms) RELEASE SAVEPOINT active_record_1
369
-  (0.0ms) SAVEPOINT active_record_1
370
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
371
-  (0.1ms) RELEASE SAVEPOINT active_record_1
372
-  (0.1ms) SAVEPOINT active_record_1
373
- SQL (0.2ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
374
-  (0.1ms) RELEASE SAVEPOINT active_record_1
375
-  (0.1ms) SAVEPOINT active_record_1
376
- SQL (0.2ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
377
-  (0.1ms) RELEASE SAVEPOINT active_record_1
378
-  (0.1ms) SAVEPOINT active_record_1
379
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
380
-  (0.1ms) RELEASE SAVEPOINT active_record_1
381
-  (0.1ms) SAVEPOINT active_record_1
382
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
383
-  (0.1ms) RELEASE SAVEPOINT active_record_1
384
-  (0.1ms) SAVEPOINT active_record_1
385
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
386
-  (0.1ms) RELEASE SAVEPOINT active_record_1
387
-  (0.0ms) SAVEPOINT active_record_1
388
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
389
-  (0.1ms) RELEASE SAVEPOINT active_record_1
390
-  (0.0ms) SAVEPOINT active_record_1
391
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
392
-  (0.0ms) RELEASE SAVEPOINT active_record_1
393
-  (0.0ms) SAVEPOINT active_record_1
394
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC]]
395
-  (0.0ms) RELEASE SAVEPOINT active_record_1
396
-  (0.0ms) SAVEPOINT active_record_1
397
- SQL (0.3ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 2]]
398
-  (0.1ms) RELEASE SAVEPOINT active_record_1
399
-  (0.0ms) SAVEPOINT active_record_1
400
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 1]]
401
-  (0.1ms) RELEASE SAVEPOINT active_record_1
402
-  (0.9ms) rollback transaction
403
-  (0.5ms) begin transaction
404
-  (0.1ms) rollback transaction
405
-  (0.1ms) begin transaction
406
-  (0.1ms) rollback transaction
407
-  (0.1ms) begin transaction
408
-  (0.1ms) SAVEPOINT active_record_1
409
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
410
-  (0.0ms) RELEASE SAVEPOINT active_record_1
411
-  (0.0ms) SAVEPOINT active_record_1
412
- SQL (0.3ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
413
-  (0.0ms) RELEASE SAVEPOINT active_record_1
414
-  (0.0ms) SAVEPOINT active_record_1
415
- SQL (0.3ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
416
-  (0.0ms) RELEASE SAVEPOINT active_record_1
417
-  (0.1ms) SAVEPOINT active_record_1
418
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
419
-  (0.1ms) RELEASE SAVEPOINT active_record_1
420
-  (0.0ms) SAVEPOINT active_record_1
421
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
422
-  (0.0ms) RELEASE SAVEPOINT active_record_1
423
-  (0.0ms) SAVEPOINT active_record_1
424
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
425
-  (0.0ms) RELEASE SAVEPOINT active_record_1
426
-  (0.0ms) SAVEPOINT active_record_1
427
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
428
-  (0.0ms) RELEASE SAVEPOINT active_record_1
429
-  (0.1ms) SAVEPOINT active_record_1
430
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
431
-  (1.1ms) RELEASE SAVEPOINT active_record_1
432
-  (0.0ms) SAVEPOINT active_record_1
433
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
434
-  (0.1ms) RELEASE SAVEPOINT active_record_1
435
-  (0.0ms) SAVEPOINT active_record_1
436
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
437
-  (0.1ms) RELEASE SAVEPOINT active_record_1
438
-  (0.0ms) SAVEPOINT active_record_1
439
- SQL (0.3ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
440
-  (0.1ms) RELEASE SAVEPOINT active_record_1
441
-  (0.1ms) SAVEPOINT active_record_1
442
- SQL (0.2ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
443
-  (0.1ms) RELEASE SAVEPOINT active_record_1
444
-  (0.1ms) SAVEPOINT active_record_1
445
- SQL (0.6ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 2]]
446
-  (0.1ms) RELEASE SAVEPOINT active_record_1
447
-  (0.1ms) SAVEPOINT active_record_1
448
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 1]]
449
-  (0.1ms) RELEASE SAVEPOINT active_record_1
450
-  (1.6ms) rollback transaction
451
-  (0.0ms) begin transaction
452
-  (0.0ms) SAVEPOINT active_record_1
453
- SQL (0.7ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
454
-  (0.1ms) RELEASE SAVEPOINT active_record_1
455
-  (0.1ms) SAVEPOINT active_record_1
456
- SQL (0.4ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
457
-  (0.1ms) RELEASE SAVEPOINT active_record_1
458
-  (0.0ms) SAVEPOINT active_record_1
459
- SQL (0.3ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
460
-  (0.0ms) RELEASE SAVEPOINT active_record_1
461
-  (0.1ms) SAVEPOINT active_record_1
462
- SQL (0.4ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
463
-  (0.1ms) RELEASE SAVEPOINT active_record_1
464
-  (0.0ms) SAVEPOINT active_record_1
465
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
466
-  (0.0ms) RELEASE SAVEPOINT active_record_1
467
-  (0.0ms) SAVEPOINT active_record_1
468
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
469
-  (0.0ms) RELEASE SAVEPOINT active_record_1
470
-  (0.0ms) SAVEPOINT active_record_1
471
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
472
-  (0.0ms) RELEASE SAVEPOINT active_record_1
473
-  (0.0ms) SAVEPOINT active_record_1
474
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
475
-  (0.0ms) RELEASE SAVEPOINT active_record_1
476
-  (0.0ms) SAVEPOINT active_record_1
477
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
478
-  (0.0ms) RELEASE SAVEPOINT active_record_1
479
-  (0.0ms) SAVEPOINT active_record_1
480
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
481
-  (0.0ms) RELEASE SAVEPOINT active_record_1
482
-  (0.0ms) SAVEPOINT active_record_1
483
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
484
-  (0.0ms) RELEASE SAVEPOINT active_record_1
485
-  (0.0ms) SAVEPOINT active_record_1
486
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC]]
487
-  (0.0ms) RELEASE SAVEPOINT active_record_1
488
-  (0.0ms) SAVEPOINT active_record_1
489
- SQL (0.3ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 2]]
490
-  (0.0ms) RELEASE SAVEPOINT active_record_1
491
-  (0.0ms) SAVEPOINT active_record_1
492
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 1]]
493
-  (0.0ms) RELEASE SAVEPOINT active_record_1
494
-  (0.9ms) rollback transaction
495
-  (0.1ms) begin transaction
496
-  (0.0ms) rollback transaction
497
-  (0.0ms) begin transaction
498
-  (0.0ms) rollback transaction
499
-  (0.4ms) begin transaction
500
-  (0.1ms) rollback transaction
501
-  (0.0ms) begin transaction
502
-  (0.0ms) rollback transaction
503
-  (0.0ms) begin transaction
504
-  (0.0ms) rollback transaction
505
-  (0.1ms) begin transaction
506
-  (0.1ms) rollback transaction
507
-  (0.1ms) begin transaction
508
-  (0.1ms) SAVEPOINT active_record_1
509
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
510
-  (0.0ms) RELEASE SAVEPOINT active_record_1
511
-  (0.1ms) SAVEPOINT active_record_1
512
- SQL (0.4ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
513
-  (0.0ms) RELEASE SAVEPOINT active_record_1
514
-  (0.0ms) SAVEPOINT active_record_1
515
- SQL (0.4ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
516
-  (0.1ms) RELEASE SAVEPOINT active_record_1
517
-  (0.1ms) SAVEPOINT active_record_1
518
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
519
-  (0.9ms) RELEASE SAVEPOINT active_record_1
520
-  (0.0ms) SAVEPOINT active_record_1
521
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
522
-  (0.0ms) RELEASE SAVEPOINT active_record_1
523
-  (0.0ms) SAVEPOINT active_record_1
524
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
525
-  (0.0ms) RELEASE SAVEPOINT active_record_1
526
-  (0.0ms) SAVEPOINT active_record_1
527
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
528
-  (0.0ms) RELEASE SAVEPOINT active_record_1
529
-  (0.1ms) SAVEPOINT active_record_1
530
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
531
-  (0.0ms) RELEASE SAVEPOINT active_record_1
532
-  (0.0ms) SAVEPOINT active_record_1
533
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
534
-  (0.0ms) RELEASE SAVEPOINT active_record_1
535
-  (0.0ms) SAVEPOINT active_record_1
536
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
537
-  (0.2ms) RELEASE SAVEPOINT active_record_1
538
-  (0.1ms) SAVEPOINT active_record_1
539
- SQL (0.3ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
540
-  (0.1ms) RELEASE SAVEPOINT active_record_1
541
-  (0.0ms) SAVEPOINT active_record_1
542
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
543
-  (0.0ms) RELEASE SAVEPOINT active_record_1
544
-  (0.0ms) SAVEPOINT active_record_1
545
- SQL (0.4ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 2]]
546
-  (0.1ms) RELEASE SAVEPOINT active_record_1
547
-  (0.1ms) SAVEPOINT active_record_1
548
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 1]]
549
-  (0.1ms) RELEASE SAVEPOINT active_record_1
550
-  (1.8ms) rollback transaction
551
-  (0.1ms) begin transaction
552
-  (0.0ms) SAVEPOINT active_record_1
553
- SQL (1.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
554
-  (0.1ms) RELEASE SAVEPOINT active_record_1
555
-  (0.0ms) SAVEPOINT active_record_1
556
- SQL (1.0ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
557
-  (0.1ms) RELEASE SAVEPOINT active_record_1
558
-  (0.0ms) SAVEPOINT active_record_1
559
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
560
-  (0.0ms) RELEASE SAVEPOINT active_record_1
561
-  (0.0ms) SAVEPOINT active_record_1
562
- SQL (0.6ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
563
-  (0.0ms) RELEASE SAVEPOINT active_record_1
564
-  (0.4ms) SAVEPOINT active_record_1
565
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
566
-  (0.0ms) RELEASE SAVEPOINT active_record_1
567
-  (0.0ms) SAVEPOINT active_record_1
568
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
569
-  (0.0ms) RELEASE SAVEPOINT active_record_1
570
-  (0.0ms) SAVEPOINT active_record_1
571
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
572
-  (0.3ms) RELEASE SAVEPOINT active_record_1
573
-  (0.1ms) SAVEPOINT active_record_1
574
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
575
-  (0.0ms) RELEASE SAVEPOINT active_record_1
576
-  (0.0ms) SAVEPOINT active_record_1
577
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
578
-  (0.0ms) RELEASE SAVEPOINT active_record_1
579
-  (0.0ms) SAVEPOINT active_record_1
580
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
581
-  (0.0ms) RELEASE SAVEPOINT active_record_1
582
-  (0.0ms) SAVEPOINT active_record_1
583
- SQL (0.3ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
584
-  (0.1ms) RELEASE SAVEPOINT active_record_1
585
-  (0.0ms) SAVEPOINT active_record_1
586
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC]]
587
-  (0.0ms) RELEASE SAVEPOINT active_record_1
588
-  (0.0ms) SAVEPOINT active_record_1
589
- SQL (0.3ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 2]]
590
-  (0.0ms) RELEASE SAVEPOINT active_record_1
591
-  (0.0ms) SAVEPOINT active_record_1
592
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 1]]
593
-  (0.0ms) RELEASE SAVEPOINT active_record_1
594
-  (0.9ms) rollback transaction
595
-  (0.4ms) begin transaction
596
-  (0.1ms) rollback transaction
597
-  (0.0ms) begin transaction
598
-  (0.0ms) rollback transaction
599
-  (0.0ms) begin transaction
600
-  (0.1ms) SAVEPOINT active_record_1
601
- SQL (0.8ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
602
-  (0.1ms) RELEASE SAVEPOINT active_record_1
603
-  (0.1ms) SAVEPOINT active_record_1
604
- SQL (0.5ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
605
-  (0.1ms) RELEASE SAVEPOINT active_record_1
606
-  (0.1ms) SAVEPOINT active_record_1
607
- SQL (0.4ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
608
-  (0.1ms) RELEASE SAVEPOINT active_record_1
609
-  (0.1ms) SAVEPOINT active_record_1
610
- SQL (0.4ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
611
-  (0.1ms) RELEASE SAVEPOINT active_record_1
612
-  (0.1ms) SAVEPOINT active_record_1
613
- SQL (0.2ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
614
-  (0.1ms) RELEASE SAVEPOINT active_record_1
615
-  (0.1ms) SAVEPOINT active_record_1
616
- SQL (0.2ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
617
-  (0.1ms) RELEASE SAVEPOINT active_record_1
618
-  (1.3ms) SAVEPOINT active_record_1
619
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
620
-  (0.1ms) RELEASE SAVEPOINT active_record_1
621
-  (0.1ms) SAVEPOINT active_record_1
622
- SQL (0.4ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 2], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
623
-  (0.1ms) RELEASE SAVEPOINT active_record_1
624
-  (0.1ms) SAVEPOINT active_record_1
625
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
626
-  (1.5ms) rollback transaction
627
-  (0.1ms) begin transaction
628
-  (0.1ms) SAVEPOINT active_record_1
629
- SQL (0.7ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
630
-  (0.1ms) RELEASE SAVEPOINT active_record_1
631
-  (0.1ms) SAVEPOINT active_record_1
632
- SQL (0.6ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
633
-  (0.1ms) RELEASE SAVEPOINT active_record_1
634
-  (0.1ms) SAVEPOINT active_record_1
635
- SQL (0.3ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
636
-  (0.1ms) RELEASE SAVEPOINT active_record_1
637
-  (0.0ms) SAVEPOINT active_record_1
638
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
639
-  (0.1ms) RELEASE SAVEPOINT active_record_1
640
-  (0.1ms) SAVEPOINT active_record_1
641
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
642
-  (0.1ms) RELEASE SAVEPOINT active_record_1
643
-  (0.0ms) SAVEPOINT active_record_1
644
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
645
-  (0.1ms) RELEASE SAVEPOINT active_record_1
646
-  (0.0ms) SAVEPOINT active_record_1
647
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
648
-  (0.1ms) RELEASE SAVEPOINT active_record_1
649
-  (0.1ms) SAVEPOINT active_record_1
650
- SQL (0.4ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 2], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
651
-  (0.1ms) RELEASE SAVEPOINT active_record_1
652
-  (0.0ms) SAVEPOINT active_record_1
653
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
654
-  (0.6ms) rollback transaction
655
-  (0.1ms) begin transaction
656
-  (0.1ms) SAVEPOINT active_record_1
657
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
658
-  (0.1ms) RELEASE SAVEPOINT active_record_1
659
-  (0.0ms) SAVEPOINT active_record_1
660
- SQL (0.3ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
661
-  (0.1ms) RELEASE SAVEPOINT active_record_1
662
-  (0.0ms) SAVEPOINT active_record_1
663
- SQL (0.3ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
664
-  (0.1ms) RELEASE SAVEPOINT active_record_1
665
-  (0.0ms) SAVEPOINT active_record_1
666
- SQL (0.4ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
667
-  (0.1ms) RELEASE SAVEPOINT active_record_1
668
-  (0.0ms) SAVEPOINT active_record_1
669
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
670
-  (0.0ms) RELEASE SAVEPOINT active_record_1
671
-  (0.0ms) SAVEPOINT active_record_1
672
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
673
-  (0.0ms) RELEASE SAVEPOINT active_record_1
674
-  (0.0ms) SAVEPOINT active_record_1
675
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
676
-  (0.0ms) RELEASE SAVEPOINT active_record_1
677
-  (0.0ms) SAVEPOINT active_record_1
678
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 2], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:30:25 UTC], ["updated_at", 2019-04-26 17:30:25 UTC]]
679
-  (0.0ms) RELEASE SAVEPOINT active_record_1
680
-  (0.0ms) SAVEPOINT active_record_1
681
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
682
-  (0.6ms) rollback transaction
683
-  (0.0ms) begin transaction
684
-  (0.0ms) rollback transaction
685
-  (0.0ms) begin transaction
686
-  (0.0ms) rollback transaction
687
-  (0.4ms) begin transaction
688
-  (0.1ms) SAVEPOINT active_record_1
689
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
690
-  (0.0ms) RELEASE SAVEPOINT active_record_1
691
-  (0.0ms) SAVEPOINT active_record_1
692
- SQL (0.3ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
693
-  (0.0ms) RELEASE SAVEPOINT active_record_1
694
-  (0.0ms) SAVEPOINT active_record_1
695
- SQL (0.2ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
696
-  (0.0ms) RELEASE SAVEPOINT active_record_1
697
-  (0.0ms) SAVEPOINT active_record_1
698
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
699
-  (0.0ms) RELEASE SAVEPOINT active_record_1
700
-  (0.0ms) SAVEPOINT active_record_1
701
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
702
-  (0.0ms) RELEASE SAVEPOINT active_record_1
703
-  (0.0ms) SAVEPOINT active_record_1
704
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
705
-  (0.0ms) RELEASE SAVEPOINT active_record_1
706
-  (0.0ms) SAVEPOINT active_record_1
707
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
708
-  (0.0ms) RELEASE SAVEPOINT active_record_1
709
-  (0.0ms) SAVEPOINT active_record_1
710
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
711
-  (0.0ms) RELEASE SAVEPOINT active_record_1
712
-  (0.0ms) SAVEPOINT active_record_1
713
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
714
-  (0.0ms) RELEASE SAVEPOINT active_record_1
715
-  (0.0ms) SAVEPOINT active_record_1
716
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
717
-  (0.0ms) RELEASE SAVEPOINT active_record_1
718
-  (0.0ms) SAVEPOINT active_record_1
719
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
720
-  (0.0ms) RELEASE SAVEPOINT active_record_1
721
-  (0.0ms) SAVEPOINT active_record_1
722
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
723
-  (0.0ms) RELEASE SAVEPOINT active_record_1
724
-  (0.1ms) SAVEPOINT active_record_1
725
- SQL (0.4ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 2]]
726
-  (0.1ms) RELEASE SAVEPOINT active_record_1
727
-  (0.1ms) SAVEPOINT active_record_1
728
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 1]]
729
-  (0.1ms) RELEASE SAVEPOINT active_record_1
730
-  (1.7ms) rollback transaction
731
-  (0.1ms) begin transaction
732
-  (0.1ms) SAVEPOINT active_record_1
733
- SQL (0.6ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
734
-  (0.0ms) RELEASE SAVEPOINT active_record_1
735
-  (0.0ms) SAVEPOINT active_record_1
736
- SQL (0.2ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 1], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
737
-  (0.1ms) RELEASE SAVEPOINT active_record_1
738
-  (0.1ms) SAVEPOINT active_record_1
739
- SQL (0.3ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 1], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
740
-  (0.1ms) RELEASE SAVEPOINT active_record_1
741
-  (0.0ms) SAVEPOINT active_record_1
742
- SQL (0.3ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
743
-  (0.0ms) RELEASE SAVEPOINT active_record_1
744
-  (0.0ms) SAVEPOINT active_record_1
745
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
746
-  (0.0ms) RELEASE SAVEPOINT active_record_1
747
-  (0.0ms) SAVEPOINT active_record_1
748
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 2], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
749
-  (0.1ms) RELEASE SAVEPOINT active_record_1
750
-  (0.0ms) SAVEPOINT active_record_1
751
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 2], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
752
-  (0.0ms) RELEASE SAVEPOINT active_record_1
753
-  (0.0ms) SAVEPOINT active_record_1
754
- SQL (0.1ms) INSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Country name"], ["acronym", "Country acronym"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
755
-  (0.0ms) RELEASE SAVEPOINT active_record_1
756
-  (0.0ms) SAVEPOINT active_record_1
757
- SQL (0.1ms) INSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "State name"], ["acronym", "State acronym"], ["country_id", 3], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
758
-  (0.1ms) RELEASE SAVEPOINT active_record_1
759
-  (0.0ms) SAVEPOINT active_record_1
760
- SQL (0.1ms) INSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "City name"], ["state_id", 3], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
761
-  (0.0ms) RELEASE SAVEPOINT active_record_1
762
-  (0.0ms) SAVEPOINT active_record_1
763
- SQL (0.2ms) INSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["city_id", 3], ["name", "Neighborhood name"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
764
-  (0.0ms) RELEASE SAVEPOINT active_record_1
765
-  (0.0ms) SAVEPOINT active_record_1
766
- SQL (0.1ms) INSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["street", "Street name"], ["city_id", 2], ["neighborhood_id", 1], ["number", "12345678"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC]]
767
-  (0.0ms) RELEASE SAVEPOINT active_record_1
768
-  (0.0ms) SAVEPOINT active_record_1
769
- SQL (0.3ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 2]]
770
-  (0.5ms) RELEASE SAVEPOINT active_record_1
771
-  (0.0ms) SAVEPOINT active_record_1
772
- SQL (0.1ms) INSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?) [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 1]]
773
-  (0.0ms) RELEASE SAVEPOINT active_record_1
774
-  (0.9ms) rollback transaction
775
-  (0.0ms) begin transaction
776
-  (0.0ms) rollback transaction
777
-  (0.9ms) begin transaction
778
-  (0.0ms) rollback transaction
779
-  (0.0ms) begin transaction
780
-  (0.1ms) rollback transaction
781
-  (0.1ms) begin transaction
782
-  (0.1ms) rollback transaction