addresses 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/addresses/cities_controller.rb +1 -6
- data/app/models/addresses/city.rb +18 -13
- data/spec/controllers/addresses/cities_controller_spec.rb +1 -1
- data/spec/dummy/db/migrate/20190614190716_create_addresses_countries.addresses.rb +13 -0
- data/spec/dummy/db/migrate/20190614190958_create_addresses_countries.addresses.rb +13 -0
- data/spec/dummy/db/migrate/20190614190959_create_addresses_states.addresses.rb +14 -0
- data/spec/dummy/db/migrate/20190614190960_create_addresses_cities.addresses.rb +13 -0
- data/spec/dummy/db/migrate/20190614190961_create_addresses_neighborhoods.addresses.rb +13 -0
- data/spec/dummy/db/migrate/20190614190962_create_addresses_addresses.addresses.rb +17 -0
- data/spec/dummy/db/migrate/20190614190963_create_addresses_zipcodes.addresses.rb +13 -0
- data/spec/dummy/db/migrate/20190614190964_remove_zipcode_attributes_from_addresses.addresses.rb +11 -0
- data/spec/models/addresses/city_spec.rb +1 -1
- metadata +18 -4
- data/spec/dummy/log/test.log +0 -782
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce24859f837728c731c1f525ae581e7a506a99567d6ab8d6a237379ff00c8aa1
|
4
|
+
data.tar.gz: 4a62c35b2c08fbab8e19324d127baa94e1e84400b0006e7d3b3c77daccac80fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
|
8
|
-
|
7
|
+
class << self
|
8
|
+
def filter(params = {})
|
9
|
+
return [] if params[:state_id].blank? && params[:name].blank?
|
9
10
|
|
10
|
-
|
11
|
+
cities = City.order('name asc')
|
11
12
|
|
12
|
-
|
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
|
-
|
17
|
-
|
16
|
+
cities
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
18
20
|
|
19
|
-
|
21
|
+
def query_word
|
22
|
+
adapter == 'postgresql' ? 'ilike' : 'like'
|
23
|
+
end
|
20
24
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
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([
|
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
|
data/spec/dummy/db/migrate/20190614190964_remove_zipcode_attributes_from_addresses.addresses.rb
ADDED
@@ -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
|
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.
|
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-
|
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
|
data/spec/dummy/log/test.log
DELETED
@@ -1,782 +0,0 @@
|
|
1
|
-
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
2
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
3
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
4
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
5
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
6
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
7
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
8
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
9
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
10
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
11
|
-
[1m[35mSQL (1.4ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
13
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
14
|
-
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
16
|
-
[1m[35m (1.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
17
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
19
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
20
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
22
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
23
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
25
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
26
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
28
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
29
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
31
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
32
|
-
[1m[35mSQL (1.2ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
34
|
-
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
35
|
-
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC], ["zipcode_id", 1]]
|
36
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
37
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
38
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
40
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
41
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
43
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
44
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
49
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
50
|
-
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
52
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
53
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
55
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
56
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
58
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
59
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
61
|
-
[1m[35m (0.7ms)[0m [1m[31mrollback transaction[0m
|
62
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
63
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
64
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
66
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
72
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
73
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
75
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
76
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
78
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
79
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
81
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
82
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
84
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
85
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
87
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
88
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:27:16 UTC], ["updated_at", 2019-04-26 17:27:16 UTC], ["zipcode_id", 1]]
|
89
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
90
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
91
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
93
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
94
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
96
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
97
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
99
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
100
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
102
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
103
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
105
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
106
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
108
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
109
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
111
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
112
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
114
|
-
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
115
|
-
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
116
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
117
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
118
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
119
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
120
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
121
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
123
|
-
[1m[35m (1.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
124
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
126
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
127
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
129
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
130
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
132
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
133
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
135
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
136
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
138
|
-
[1m[35m (1.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
139
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
141
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
142
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
144
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
145
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
147
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
148
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
150
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
151
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
153
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
154
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
156
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
157
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 2]]
|
158
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
159
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
160
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 1]]
|
161
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
162
|
-
[1m[35m (1.6ms)[0m [1m[31mrollback transaction[0m
|
163
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
164
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
165
|
-
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
167
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
168
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
170
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
171
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
173
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
174
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
176
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
177
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
179
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
180
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
182
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
183
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
185
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
186
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
188
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
189
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
191
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
192
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
194
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
195
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
197
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
198
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
200
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
201
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 2]]
|
202
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
203
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
204
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:11 UTC], ["updated_at", 2019-04-26 17:28:11 UTC], ["zipcode_id", 1]]
|
205
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
206
|
-
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
207
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
208
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
209
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
210
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
211
|
-
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
212
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
213
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
214
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
215
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
216
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
217
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
218
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
219
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
220
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
221
|
-
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
223
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
224
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
226
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
227
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
229
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
230
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
232
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
233
|
-
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
235
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
236
|
-
[1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
238
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
239
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
241
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
242
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
244
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
245
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
247
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
248
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
250
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
251
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
253
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
254
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
256
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
257
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 2]]
|
258
|
-
[1m[35m (0.6ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
259
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
260
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 1]]
|
261
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
262
|
-
[1m[35m (1.7ms)[0m [1m[31mrollback transaction[0m
|
263
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
264
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
265
|
-
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
267
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
268
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
270
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
271
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
273
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
274
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
276
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
277
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
279
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
280
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
282
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
283
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
285
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
286
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
288
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
289
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
291
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
292
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
294
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
295
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
297
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
298
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
300
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
301
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 2]]
|
302
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
303
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
304
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:28:54 UTC], ["updated_at", 2019-04-26 17:28:54 UTC], ["zipcode_id", 1]]
|
305
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
306
|
-
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
307
|
-
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
308
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
309
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
310
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
311
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
312
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
313
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
314
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
315
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
316
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
317
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
319
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
320
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
322
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
323
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
325
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
326
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
328
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
329
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
331
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
332
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
334
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
335
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
337
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
338
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
340
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
341
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
343
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
344
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
346
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
347
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
349
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
350
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
352
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
353
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 2]]
|
354
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
355
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
356
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 1]]
|
357
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
358
|
-
[1m[35m (1.7ms)[0m [1m[31mrollback transaction[0m
|
359
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
360
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
361
|
-
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
363
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
364
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
366
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
367
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
369
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
370
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
372
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
373
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
375
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
376
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
378
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
379
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
381
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
382
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
384
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
385
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
387
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
388
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
390
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
391
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
393
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
394
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
396
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
397
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 2]]
|
398
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
399
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
400
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:21 UTC], ["updated_at", 2019-04-26 17:29:21 UTC], ["zipcode_id", 1]]
|
401
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
402
|
-
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
403
|
-
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
404
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
405
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
406
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
407
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
408
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
409
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
411
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
412
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
414
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
415
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
417
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
418
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
420
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
421
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
423
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
424
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
426
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
427
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
429
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
430
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (1.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
432
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
433
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
435
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
436
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
438
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
439
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
441
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
442
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
444
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
445
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 2]]
|
446
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
447
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
448
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 1]]
|
449
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
450
|
-
[1m[35m (1.6ms)[0m [1m[31mrollback transaction[0m
|
451
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
452
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
453
|
-
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
455
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
456
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
458
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
459
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
461
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
462
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
464
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
465
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
467
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
468
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
470
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
471
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
473
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
474
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
476
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
477
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
479
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
480
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
482
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
483
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
485
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
486
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
488
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
489
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 2]]
|
490
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
491
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
492
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:29:49 UTC], ["updated_at", 2019-04-26 17:29:49 UTC], ["zipcode_id", 1]]
|
493
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
494
|
-
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
495
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
496
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
497
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
498
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
499
|
-
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
500
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
501
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
502
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
503
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
504
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
505
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
506
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
507
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
508
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
509
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
511
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
512
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
514
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
515
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
517
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
518
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
520
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
521
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
523
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
524
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
526
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
527
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
529
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
530
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
532
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
533
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
535
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
536
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
538
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
539
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
541
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
542
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
544
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
545
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 2]]
|
546
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
547
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
548
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 1]]
|
549
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
550
|
-
[1m[35m (1.8ms)[0m [1m[31mrollback transaction[0m
|
551
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
552
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
553
|
-
[1m[35mSQL (1.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
555
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
556
|
-
[1m[35mSQL (1.0ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
558
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
559
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
561
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
562
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
564
|
-
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
565
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
567
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
568
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
570
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
571
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
573
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
574
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
576
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
577
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
579
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
580
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
582
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
583
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
585
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
586
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
588
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
589
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 2]]
|
590
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
591
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
592
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:06 UTC], ["updated_at", 2019-04-26 17:30:06 UTC], ["zipcode_id", 1]]
|
593
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
594
|
-
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
595
|
-
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
596
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
597
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
598
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
599
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
600
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
601
|
-
[1m[35mSQL (0.8ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
603
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
604
|
-
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
606
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
607
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
609
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
610
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
612
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
613
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
615
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
616
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
618
|
-
[1m[35m (1.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
619
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
621
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
622
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
624
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
625
|
-
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
626
|
-
[1m[35m (1.5ms)[0m [1m[31mrollback transaction[0m
|
627
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
628
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
629
|
-
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
631
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
632
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
634
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
635
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
637
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
638
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
640
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
641
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
643
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
644
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
646
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
647
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
649
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
650
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
652
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
653
|
-
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
654
|
-
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
655
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
656
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
657
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
659
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
660
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
662
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
663
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
665
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
666
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
668
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
669
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
671
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
672
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
674
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
675
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
677
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
678
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
680
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
681
|
-
[1m[35m (0.0ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
682
|
-
[1m[35m (0.6ms)[0m [1m[31mrollback transaction[0m
|
683
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
684
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
685
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
686
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
687
|
-
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
688
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
689
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
691
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
692
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
694
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
695
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
697
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
698
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
700
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
701
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
703
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
704
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
706
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
707
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
709
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
710
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
712
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
713
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
715
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
716
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
718
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
719
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
721
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
722
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
724
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
725
|
-
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 2]]
|
726
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
727
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
728
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 1]]
|
729
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
730
|
-
[1m[35m (1.7ms)[0m [1m[31mrollback transaction[0m
|
731
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
732
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
733
|
-
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
735
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
736
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
738
|
-
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
739
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
741
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
742
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
744
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
745
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
747
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
748
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
750
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
751
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
753
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
754
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_countries" ("name", "acronym", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
756
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
757
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_states" ("name", "acronym", "country_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
759
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
760
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_cities" ("name", "state_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
762
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
763
|
-
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "addresses_neighborhoods" ("city_id", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
765
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
766
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_zipcodes" ("street", "city_id", "neighborhood_id", "number", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
768
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
769
|
-
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 2]]
|
770
|
-
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
771
|
-
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
772
|
-
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "addresses_addresses" ("number", "created_at", "updated_at", "zipcode_id") VALUES (?, ?, ?, ?)[0m [["number", "Number"], ["created_at", 2019-04-26 17:30:41 UTC], ["updated_at", 2019-04-26 17:30:41 UTC], ["zipcode_id", 1]]
|
773
|
-
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
774
|
-
[1m[35m (0.9ms)[0m [1m[31mrollback transaction[0m
|
775
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
776
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
777
|
-
[1m[35m (0.9ms)[0m [1m[36mbegin transaction[0m
|
778
|
-
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
779
|
-
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
780
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
781
|
-
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
782
|
-
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|