magic_addresses 0.0.43 → 0.0.44
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/README.md +42 -4
- data/lib/app/models/magic_addresses/address.rb +22 -1
- data/lib/app/models/magic_addresses/association.rb +39 -1
- data/lib/generators/magic_addresses/add_named_addresses_generator.rb +25 -0
- data/lib/generators/magic_addresses/templates/add_named_addresses_migration.rb +17 -0
- data/lib/generators/magic_addresses/update_generator.rb +3 -0
- data/lib/magic_addresses/version.rb +1 -1
- data/spec/dummy/app/models/customer.rb +9 -0
- data/spec/dummy/db/migrate/20161013083634_create_customers.rb +12 -0
- data/spec/dummy/db/migrate/20161013102744_add_named_addresses.rb +17 -0
- data/spec/dummy/db/schema.rb +39 -28
- data/spec/dummy/log/development.log +906 -0
- data/spec/models/customer_spec.rb +102 -0
- data/spec/models/magic_addresses/address_spec.rb +9 -9
- data/spec/models/user_spec.rb +1 -1
- metadata +12 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52f9e4860c69d3d757ffd44605b1077caeb42edd
|
4
|
+
data.tar.gz: 10dfd7114637817074de71b628594dbfd735002c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 077045256cb7458ddb129830d3dfa1fa3eac7b4a1509fd8b7db414211aaf94cb4babed252a1eb8a284b70ea57db087900f9b661d0c11c293987f6f09b1f23495
|
7
|
+
data.tar.gz: c579941bfd12413902987fca3517053583f1e56a566867689719a10297b8243f9cfed7a3c7d28b21ce1b98ec397bda8a25021aa4b0491023f221ef0975164d5a
|
data/README.md
CHANGED
@@ -27,8 +27,34 @@ rails g magic_addresses:install
|
|
27
27
|
|
28
28
|
|
29
29
|
|
30
|
-
##
|
31
|
-
since version `0.0.
|
30
|
+
## News
|
31
|
+
##### since version `0.0.44` there are named addresses, so one model can have multiple-times one-address
|
32
|
+
|
33
|
+
run:
|
34
|
+
```ruby
|
35
|
+
rails g magic_addresses:add_named_addresses
|
36
|
+
.. or ..
|
37
|
+
rails g magic_addresses:update
|
38
|
+
```
|
39
|
+
and migrate your Database
|
40
|
+
|
41
|
+
|
42
|
+
Model-Example
|
43
|
+
```ruby
|
44
|
+
class Customer < ActiveRecord::Base
|
45
|
+
|
46
|
+
has_one_address()
|
47
|
+
has_one_named_address( "invoice_address" )
|
48
|
+
has_one_named_address( "delivery_address" )
|
49
|
+
|
50
|
+
end
|
51
|
+
```
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
##### since version `0.0.13` addresses are uniq, so the same address never will be saved twice, instead owners share one address
|
32
58
|
|
33
59
|
run:
|
34
60
|
```ruby
|
@@ -53,9 +79,21 @@ be sure to activate it in initializer before migrate!
|
|
53
79
|
|
54
80
|
has_addresses # => This model has many addresses. (ie: Company)
|
55
81
|
|
56
|
-
#
|
57
|
-
#
|
82
|
+
# You can use `has_one_address` and `has_addresses` on the same model
|
83
|
+
# `has_one_address` sets the default flag so could be major address.
|
58
84
|
|
85
|
+
## NEW:
|
86
|
+
|
87
|
+
has_one_named_address( "name_me" )
|
88
|
+
|
89
|
+
# works together with the other both .. so models can have multiple single addresses
|
90
|
+
# ie:
|
91
|
+
has_one_address()
|
92
|
+
has_one_named_address( "invoice_address" )
|
93
|
+
has_one_named_address( "delivery_address" )
|
94
|
+
|
95
|
+
|
96
|
+
## UNSTABLE:
|
59
97
|
has_nested_address # => Has one directly nested addresses. (ie: User.street, User.city)
|
60
98
|
|
61
99
|
```
|
@@ -76,7 +76,7 @@ class MagicAddresses::Address < ActiveRecord::Base
|
|
76
76
|
# settter methods
|
77
77
|
%w[country state city district subdistrict street number postalcode country_code].each do |key|
|
78
78
|
define_method("#{key}=") do |value|
|
79
|
-
self.street_name = value if key == "street"
|
79
|
+
# self.street_name = value if key == "street"
|
80
80
|
self.fetch_address = (fetch_address || {}).merge("fetch_#{ key == 'postalcode' ? 'zipcode' : key }" => value)
|
81
81
|
end
|
82
82
|
end
|
@@ -149,6 +149,27 @@ class MagicAddresses::Address < ActiveRecord::Base
|
|
149
149
|
end
|
150
150
|
end
|
151
151
|
|
152
|
+
def display( *args )
|
153
|
+
options = args.extract_options!
|
154
|
+
## style => 'inline' | 'full'
|
155
|
+
style = args.first || options[:style] if args.first.present? || options[:style].present?
|
156
|
+
show_state = options[:state].present? ? options[:state] : false
|
157
|
+
show_country = options[:country].present? ? options[:country] : false
|
158
|
+
show_district = options[:district].present? ? options[:district] : false
|
159
|
+
show_subdistrict = options[:subdistrict].present? ? options[:subdistrict] : false
|
160
|
+
adr = []
|
161
|
+
adr << "#{street} #{number}".strip if street.present?
|
162
|
+
adr << "#{postalcode} #{city}".strip if zipcode.present? || city.present?
|
163
|
+
adr << "#{district.present? && show_district ? district : ''} #{subdistrict.present? && show_subdistrict ? "(#{subdistrict})" : ''}".strip if show_district || show_subdistrict
|
164
|
+
adr << state if state.present? && show_state
|
165
|
+
adr << country if country.present? && show_country
|
166
|
+
if adr.count == 0
|
167
|
+
I18n.t("addresses.no_address_given")
|
168
|
+
else
|
169
|
+
type == "full" ? adr.join("<br />") : adr.join(", ")
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
152
173
|
def owners
|
153
174
|
addressibles.map { |that| ::MagicAddresses::OwnerProxy.new( that ) }
|
154
175
|
end
|
@@ -38,7 +38,7 @@ module MagicAddresses
|
|
38
38
|
# dependent: :destroy
|
39
39
|
|
40
40
|
has_one :addressible,
|
41
|
-
-> { where(default: true) },
|
41
|
+
-> { where(default: true, named_address: ["", nil]) },
|
42
42
|
as: :owner,
|
43
43
|
class_name: "MagicAddresses::Addressible",
|
44
44
|
dependent: :destroy
|
@@ -50,6 +50,28 @@ module MagicAddresses
|
|
50
50
|
# accepts_nested_attributes_for :addressible, :address, allow_destroy: true, reject_if: :all_blank
|
51
51
|
end
|
52
52
|
|
53
|
+
def has_one_named_address( name = "address" )
|
54
|
+
|
55
|
+
has_one "#{name}_addressible".to_sym,
|
56
|
+
-> { where(default: true, named_address: name) },
|
57
|
+
as: :owner,
|
58
|
+
class_name: "MagicAddresses::Addressible",
|
59
|
+
dependent: :destroy
|
60
|
+
|
61
|
+
has_one "#{name}".to_sym,
|
62
|
+
through: "#{name}_addressible".to_sym,
|
63
|
+
source: :address
|
64
|
+
|
65
|
+
define_method "#{name}_attributes=" do |params|
|
66
|
+
self.send( "#{name}=", MagicAddresses::Address.get_one( self, params ) )
|
67
|
+
end
|
68
|
+
|
69
|
+
define_method "#{name}_addressible_attributes=" do |params|
|
70
|
+
self.send( "#{name}=", MagicAddresses::Address.get_one( self, params["#{name}_attributes".to_sym] ) )
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
53
75
|
|
54
76
|
def has_nested_address
|
55
77
|
send :include, NestedInstanceMethods
|
@@ -95,6 +117,22 @@ module MagicAddresses
|
|
95
117
|
|
96
118
|
end #> InstanceMethods
|
97
119
|
|
120
|
+
|
121
|
+
# module OneNamedInstanceMethods
|
122
|
+
# @@named_address.each do |that|
|
123
|
+
#
|
124
|
+
# define_method "#{that}_attributes=" do |params|
|
125
|
+
# self.send( "#{that}=", MagicAddresses::Address.get_one( self, params ) )
|
126
|
+
# end
|
127
|
+
#
|
128
|
+
# define_method "#{that}_addressible_attributes=" do |params|
|
129
|
+
# self.send( "#{that}", MagicAddresses::Address.get_one( self, params[:address_attributes] ) )
|
130
|
+
# end
|
131
|
+
#
|
132
|
+
# end if @@named_address
|
133
|
+
# end #> OneNamedInstanceMethods
|
134
|
+
|
135
|
+
|
98
136
|
module NestedInstanceMethods
|
99
137
|
|
100
138
|
# http://stackoverflow.com/a/4033761
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'rails/generators/migration'
|
2
|
+
|
3
|
+
module MagicAddresses
|
4
|
+
module Generators
|
5
|
+
class AddNamedAddressesGenerator < ::Rails::Generators::Base
|
6
|
+
include Rails::Generators::Migration
|
7
|
+
source_root File.expand_path('../templates', __FILE__)
|
8
|
+
desc "add named_addresses update migrations"
|
9
|
+
|
10
|
+
def self.next_migration_number(path)
|
11
|
+
unless @prev_migration_nr
|
12
|
+
@prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i
|
13
|
+
else
|
14
|
+
@prev_migration_nr += 1
|
15
|
+
end
|
16
|
+
@prev_migration_nr.to_s
|
17
|
+
end
|
18
|
+
|
19
|
+
def copy_migrations
|
20
|
+
migration_template( "add_named_addresses_migration.rb", "db/migrate/add_named_addresses.rb" )
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
class AddNamedAddresses < ActiveRecord::Migration
|
3
|
+
def change
|
4
|
+
|
5
|
+
|
6
|
+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
7
|
+
## add new field for named addresses
|
8
|
+
|
9
|
+
add_column :mgca_addressibles, :named_address, :string
|
10
|
+
|
11
|
+
add_index :mgca_addressibles, :named_address
|
12
|
+
|
13
|
+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
14
|
+
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
@@ -17,7 +17,10 @@ module MagicAddresses
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def copy_migrations
|
20
|
+
## copy update migration
|
20
21
|
migration_template( "update_address_migration.rb", "db/migrate/update_magic_addresses.rb" )
|
22
|
+
## copy named_address migration
|
23
|
+
migration_template( "add_named_addresses_migration.rb", "db/migrate/add_named_addresses.rb" )
|
21
24
|
end
|
22
25
|
|
23
26
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
class AddNamedAddresses < ActiveRecord::Migration
|
3
|
+
def change
|
4
|
+
|
5
|
+
|
6
|
+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
7
|
+
## add new field for named addresses
|
8
|
+
|
9
|
+
add_column :mgca_addressibles, :named_address, :string
|
10
|
+
|
11
|
+
add_index :mgca_addressibles, :named_address
|
12
|
+
|
13
|
+
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
14
|
+
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,10 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
14
|
+
ActiveRecord::Schema.define(version: 20161013102744) do
|
15
|
+
|
16
|
+
# These are extensions that must be enabled in order to support this database
|
17
|
+
enable_extension "plpgsql"
|
15
18
|
|
16
19
|
create_table "companies", force: :cascade do |t|
|
17
20
|
t.string "name"
|
@@ -19,6 +22,12 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
19
22
|
t.datetime "updated_at", null: false
|
20
23
|
end
|
21
24
|
|
25
|
+
create_table "customers", force: :cascade do |t|
|
26
|
+
t.string "name"
|
27
|
+
t.datetime "created_at", null: false
|
28
|
+
t.datetime "updated_at", null: false
|
29
|
+
end
|
30
|
+
|
22
31
|
create_table "mgca_address_translations", force: :cascade do |t|
|
23
32
|
t.integer "mgca_address_id", null: false
|
24
33
|
t.string "locale", null: false
|
@@ -27,8 +36,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
27
36
|
t.string "street_name"
|
28
37
|
end
|
29
38
|
|
30
|
-
add_index "mgca_address_translations", ["locale"], name: "index_mgca_address_translations_on_locale"
|
31
|
-
add_index "mgca_address_translations", ["mgca_address_id"], name: "index_mgca_address_translations_on_mgca_address_id"
|
39
|
+
add_index "mgca_address_translations", ["locale"], name: "index_mgca_address_translations_on_locale", using: :btree
|
40
|
+
add_index "mgca_address_translations", ["mgca_address_id"], name: "index_mgca_address_translations_on_mgca_address_id", using: :btree
|
32
41
|
|
33
42
|
create_table "mgca_addresses", force: :cascade do |t|
|
34
43
|
t.string "name"
|
@@ -49,11 +58,11 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
49
58
|
t.string "status", default: "new"
|
50
59
|
end
|
51
60
|
|
52
|
-
add_index "mgca_addresses", ["city_id"], name: "index_mgca_addresses_on_city_id"
|
53
|
-
add_index "mgca_addresses", ["country_id"], name: "index_mgca_addresses_on_country_id"
|
54
|
-
add_index "mgca_addresses", ["district_id"], name: "index_mgca_addresses_on_district_id"
|
55
|
-
add_index "mgca_addresses", ["state_id"], name: "index_mgca_addresses_on_state_id"
|
56
|
-
add_index "mgca_addresses", ["subdistrict_id"], name: "index_mgca_addresses_on_subdistrict_id"
|
61
|
+
add_index "mgca_addresses", ["city_id"], name: "index_mgca_addresses_on_city_id", using: :btree
|
62
|
+
add_index "mgca_addresses", ["country_id"], name: "index_mgca_addresses_on_country_id", using: :btree
|
63
|
+
add_index "mgca_addresses", ["district_id"], name: "index_mgca_addresses_on_district_id", using: :btree
|
64
|
+
add_index "mgca_addresses", ["state_id"], name: "index_mgca_addresses_on_state_id", using: :btree
|
65
|
+
add_index "mgca_addresses", ["subdistrict_id"], name: "index_mgca_addresses_on_subdistrict_id", using: :btree
|
57
66
|
|
58
67
|
create_table "mgca_addressibles", force: :cascade do |t|
|
59
68
|
t.boolean "default"
|
@@ -61,12 +70,14 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
61
70
|
t.integer "owner_id"
|
62
71
|
t.string "owner_type"
|
63
72
|
t.integer "address_id"
|
64
|
-
t.datetime "created_at",
|
65
|
-
t.datetime "updated_at",
|
73
|
+
t.datetime "created_at", null: false
|
74
|
+
t.datetime "updated_at", null: false
|
75
|
+
t.string "named_address"
|
66
76
|
end
|
67
77
|
|
68
|
-
add_index "mgca_addressibles", ["address_id"], name: "index_mgca_addressibles_on_address_id"
|
69
|
-
add_index "mgca_addressibles", ["
|
78
|
+
add_index "mgca_addressibles", ["address_id"], name: "index_mgca_addressibles_on_address_id", using: :btree
|
79
|
+
add_index "mgca_addressibles", ["named_address"], name: "index_mgca_addressibles_on_named_address", using: :btree
|
80
|
+
add_index "mgca_addressibles", ["owner_type", "owner_id"], name: "index_mgca_addressibles_on_owner_type_and_owner_id", using: :btree
|
70
81
|
|
71
82
|
create_table "mgca_cities", force: :cascade do |t|
|
72
83
|
t.string "default_name"
|
@@ -78,8 +89,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
78
89
|
t.datetime "updated_at"
|
79
90
|
end
|
80
91
|
|
81
|
-
add_index "mgca_cities", ["country_id"], name: "index_mgca_cities_on_country_id"
|
82
|
-
add_index "mgca_cities", ["state_id"], name: "index_mgca_cities_on_state_id"
|
92
|
+
add_index "mgca_cities", ["country_id"], name: "index_mgca_cities_on_country_id", using: :btree
|
93
|
+
add_index "mgca_cities", ["state_id"], name: "index_mgca_cities_on_state_id", using: :btree
|
83
94
|
|
84
95
|
create_table "mgca_city_translations", force: :cascade do |t|
|
85
96
|
t.integer "mgca_city_id", null: false
|
@@ -89,8 +100,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
89
100
|
t.string "name"
|
90
101
|
end
|
91
102
|
|
92
|
-
add_index "mgca_city_translations", ["locale"], name: "index_mgca_city_translations_on_locale"
|
93
|
-
add_index "mgca_city_translations", ["mgca_city_id"], name: "index_mgca_city_translations_on_mgca_city_id"
|
103
|
+
add_index "mgca_city_translations", ["locale"], name: "index_mgca_city_translations_on_locale", using: :btree
|
104
|
+
add_index "mgca_city_translations", ["mgca_city_id"], name: "index_mgca_city_translations_on_mgca_city_id", using: :btree
|
94
105
|
|
95
106
|
create_table "mgca_countries", force: :cascade do |t|
|
96
107
|
t.string "default_name"
|
@@ -109,8 +120,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
109
120
|
t.string "name"
|
110
121
|
end
|
111
122
|
|
112
|
-
add_index "mgca_country_translations", ["locale"], name: "index_mgca_country_translations_on_locale"
|
113
|
-
add_index "mgca_country_translations", ["mgca_country_id"], name: "index_mgca_country_translations_on_mgca_country_id"
|
123
|
+
add_index "mgca_country_translations", ["locale"], name: "index_mgca_country_translations_on_locale", using: :btree
|
124
|
+
add_index "mgca_country_translations", ["mgca_country_id"], name: "index_mgca_country_translations_on_mgca_country_id", using: :btree
|
114
125
|
|
115
126
|
create_table "mgca_district_translations", force: :cascade do |t|
|
116
127
|
t.integer "mgca_district_id", null: false
|
@@ -120,8 +131,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
120
131
|
t.string "name"
|
121
132
|
end
|
122
133
|
|
123
|
-
add_index "mgca_district_translations", ["locale"], name: "index_mgca_district_translations_on_locale"
|
124
|
-
add_index "mgca_district_translations", ["mgca_district_id"], name: "index_mgca_district_translations_on_mgca_district_id"
|
134
|
+
add_index "mgca_district_translations", ["locale"], name: "index_mgca_district_translations_on_locale", using: :btree
|
135
|
+
add_index "mgca_district_translations", ["mgca_district_id"], name: "index_mgca_district_translations_on_mgca_district_id", using: :btree
|
125
136
|
|
126
137
|
create_table "mgca_districts", force: :cascade do |t|
|
127
138
|
t.string "default_name"
|
@@ -132,7 +143,7 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
132
143
|
t.datetime "updated_at"
|
133
144
|
end
|
134
145
|
|
135
|
-
add_index "mgca_districts", ["city_id"], name: "index_mgca_districts_on_city_id"
|
146
|
+
add_index "mgca_districts", ["city_id"], name: "index_mgca_districts_on_city_id", using: :btree
|
136
147
|
|
137
148
|
create_table "mgca_state_translations", force: :cascade do |t|
|
138
149
|
t.integer "mgca_state_id", null: false
|
@@ -142,8 +153,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
142
153
|
t.string "name"
|
143
154
|
end
|
144
155
|
|
145
|
-
add_index "mgca_state_translations", ["locale"], name: "index_mgca_state_translations_on_locale"
|
146
|
-
add_index "mgca_state_translations", ["mgca_state_id"], name: "index_mgca_state_translations_on_mgca_state_id"
|
156
|
+
add_index "mgca_state_translations", ["locale"], name: "index_mgca_state_translations_on_locale", using: :btree
|
157
|
+
add_index "mgca_state_translations", ["mgca_state_id"], name: "index_mgca_state_translations_on_mgca_state_id", using: :btree
|
147
158
|
|
148
159
|
create_table "mgca_states", force: :cascade do |t|
|
149
160
|
t.string "default_name"
|
@@ -154,7 +165,7 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
154
165
|
t.datetime "updated_at"
|
155
166
|
end
|
156
167
|
|
157
|
-
add_index "mgca_states", ["country_id"], name: "index_mgca_states_on_country_id"
|
168
|
+
add_index "mgca_states", ["country_id"], name: "index_mgca_states_on_country_id", using: :btree
|
158
169
|
|
159
170
|
create_table "mgca_subdistrict_translations", force: :cascade do |t|
|
160
171
|
t.integer "mgca_subdistrict_id", null: false
|
@@ -164,8 +175,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
164
175
|
t.string "name"
|
165
176
|
end
|
166
177
|
|
167
|
-
add_index "mgca_subdistrict_translations", ["locale"], name: "index_mgca_subdistrict_translations_on_locale"
|
168
|
-
add_index "mgca_subdistrict_translations", ["mgca_subdistrict_id"], name: "index_mgca_subdistrict_translations_on_mgca_subdistrict_id"
|
178
|
+
add_index "mgca_subdistrict_translations", ["locale"], name: "index_mgca_subdistrict_translations_on_locale", using: :btree
|
179
|
+
add_index "mgca_subdistrict_translations", ["mgca_subdistrict_id"], name: "index_mgca_subdistrict_translations_on_mgca_subdistrict_id", using: :btree
|
169
180
|
|
170
181
|
create_table "mgca_subdistricts", force: :cascade do |t|
|
171
182
|
t.string "default_name"
|
@@ -177,8 +188,8 @@ ActiveRecord::Schema.define(version: 20151118102658) do
|
|
177
188
|
t.datetime "updated_at"
|
178
189
|
end
|
179
190
|
|
180
|
-
add_index "mgca_subdistricts", ["city_id"], name: "index_mgca_subdistricts_on_city_id"
|
181
|
-
add_index "mgca_subdistricts", ["district_id"], name: "index_mgca_subdistricts_on_district_id"
|
191
|
+
add_index "mgca_subdistricts", ["city_id"], name: "index_mgca_subdistricts_on_city_id", using: :btree
|
192
|
+
add_index "mgca_subdistricts", ["district_id"], name: "index_mgca_subdistricts_on_district_id", using: :btree
|
182
193
|
|
183
194
|
create_table "users", force: :cascade do |t|
|
184
195
|
t.string "name"
|
@@ -24471,3 +24471,909 @@ Started GET "/assets/application-19c71fceca706608c55ac5e787d2348a.js?body=1" for
|
|
24471
24471
|
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150213105831')[0m
|
24472
24472
|
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150225220219')
|
24473
24473
|
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20151111133333')[0m
|
24474
|
+
[1m[36m (12.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
24475
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
24476
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
24477
|
+
Migrating to CreateUsers (20150213105831)
|
24478
|
+
[1m[35m (0.1ms)[0m BEGIN
|
24479
|
+
[1m[36m (11.0ms)[0m [1mCREATE TABLE "users" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24480
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150213105831"]]
|
24481
|
+
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
|
24482
|
+
Migrating to AddMagicAddresses (20150225220219)
|
24483
|
+
[1m[35m (0.3ms)[0m BEGIN
|
24484
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "mgca_addresses" ("id" serial primary key, "name" character varying, "fetch_address" text, "street_default" character varying, "street_number" character varying, "street_additional" character varying, "zipcode" integer, "default" boolean, "longitude" float, "latitude" float, "subdistrict_id" integer, "district_id" integer, "city_id" integer, "state_id" integer, "country_id" integer, "owner_id" integer, "owner_type" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24485
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_addresses_on_subdistrict_id" ON "mgca_addresses" ("subdistrict_id")
|
24486
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_addresses_on_district_id" ON "mgca_addresses" ("district_id")[0m
|
24487
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_addresses_on_city_id" ON "mgca_addresses" ("city_id")
|
24488
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_addresses_on_state_id" ON "mgca_addresses" ("state_id")[0m
|
24489
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_addresses_on_country_id" ON "mgca_addresses" ("country_id")
|
24490
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_addresses_on_owner_type_and_owner_id" ON "mgca_addresses" ("owner_type", "owner_id")[0m
|
24491
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "mgca_address_translations" ("id" serial primary key, "mgca_address_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
24492
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "mgca_address_translations" ADD "street_name" character varying[0m
|
24493
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_address_translations_on_mgca_address_id" ON "mgca_address_translations" ("mgca_address_id")
|
24494
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_address_translations_on_locale" ON "mgca_address_translations" ("locale")[0m
|
24495
|
+
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/austin/Sites/berlinmagic/magic_addresses/spec/dummy/db/migrate/20150225220219_add_magic_addresses.rb:66)
|
24496
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "mgca_countries" ("id" serial primary key, "default_name" character varying, "iso_code" character varying(2), "dial_code" character varying, "fsm_state" character varying DEFAULT 'new', "created_at" timestamp, "updated_at" timestamp)
|
24497
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "mgca_country_translations" ("id" serial primary key, "mgca_country_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24498
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "mgca_country_translations" ADD "name" character varying
|
24499
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_country_translations_on_mgca_country_id" ON "mgca_country_translations" ("mgca_country_id")[0m
|
24500
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_country_translations_on_locale" ON "mgca_country_translations" ("locale")
|
24501
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+43"], ["default_name", "Austria"], ["iso_code", "AT"], ["created_at", "2016-10-13 08:37:22.546395"], ["updated_at", "2016-10-13 08:37:22.546395"]]
|
24502
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Rakousko"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.552771"], ["updated_at", "2016-10-13 08:37:22.552771"]]
|
24503
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Österreich"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.554786"], ["updated_at", "2016-10-13 08:37:22.554786"]]
|
24504
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Austria"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.555903"], ["updated_at", "2016-10-13 08:37:22.555903"]]
|
24505
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Austria"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.557366"], ["updated_at", "2016-10-13 08:37:22.557366"]]
|
24506
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Autriche"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.558441"], ["updated_at", "2016-10-13 08:37:22.558441"]]
|
24507
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Austria"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.559631"], ["updated_at", "2016-10-13 08:37:22.559631"]]
|
24508
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Austria"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.560802"], ["updated_at", "2016-10-13 08:37:22.560802"]]
|
24509
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Австрия"], ["mgca_country_id", 1], ["created_at", "2016-10-13 08:37:22.561851"], ["updated_at", "2016-10-13 08:37:22.561851"]]
|
24510
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+375"], ["default_name", "Belarus"], ["iso_code", "BY"], ["created_at", "2016-10-13 08:37:22.575667"], ["updated_at", "2016-10-13 08:37:22.575667"]]
|
24511
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Bělorusko"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.577060"], ["updated_at", "2016-10-13 08:37:22.577060"]]
|
24512
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Weißrussland"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.578088"], ["updated_at", "2016-10-13 08:37:22.578088"]]
|
24513
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Belarus"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.579056"], ["updated_at", "2016-10-13 08:37:22.579056"]]
|
24514
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Bielorrusia"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.579981"], ["updated_at", "2016-10-13 08:37:22.579981"]]
|
24515
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Bélarus"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.580964"], ["updated_at", "2016-10-13 08:37:22.580964"]]
|
24516
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Bielorussia"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.581962"], ["updated_at", "2016-10-13 08:37:22.581962"]]
|
24517
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Białoruś"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.582971"], ["updated_at", "2016-10-13 08:37:22.582971"]]
|
24518
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Беларусь"], ["mgca_country_id", 2], ["created_at", "2016-10-13 08:37:22.583930"], ["updated_at", "2016-10-13 08:37:22.583930"]]
|
24519
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+32"], ["default_name", "Belgium"], ["iso_code", "BE"], ["created_at", "2016-10-13 08:37:22.588306"], ["updated_at", "2016-10-13 08:37:22.588306"]]
|
24520
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Belgie"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.589401"], ["updated_at", "2016-10-13 08:37:22.589401"]]
|
24521
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Belgien"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.590401"], ["updated_at", "2016-10-13 08:37:22.590401"]]
|
24522
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Belgium"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.591356"], ["updated_at", "2016-10-13 08:37:22.591356"]]
|
24523
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Bélgica"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.592295"], ["updated_at", "2016-10-13 08:37:22.592295"]]
|
24524
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Belgique"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.593256"], ["updated_at", "2016-10-13 08:37:22.593256"]]
|
24525
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Belgio"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.594259"], ["updated_at", "2016-10-13 08:37:22.594259"]]
|
24526
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Belgia"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.595180"], ["updated_at", "2016-10-13 08:37:22.595180"]]
|
24527
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Бельгия"], ["mgca_country_id", 3], ["created_at", "2016-10-13 08:37:22.596091"], ["updated_at", "2016-10-13 08:37:22.596091"]]
|
24528
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+387"], ["default_name", "Bosnia and Herzegovina"], ["iso_code", "BA"], ["created_at", "2016-10-13 08:37:22.600677"], ["updated_at", "2016-10-13 08:37:22.600677"]]
|
24529
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Bosna a Hercegovina"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.601912"], ["updated_at", "2016-10-13 08:37:22.601912"]]
|
24530
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Bosnien und Herzegowina"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.602904"], ["updated_at", "2016-10-13 08:37:22.602904"]]
|
24531
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Bosnia and Herzegovina"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.603818"], ["updated_at", "2016-10-13 08:37:22.603818"]]
|
24532
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Bosnia y Herzegovina"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.604724"], ["updated_at", "2016-10-13 08:37:22.604724"]]
|
24533
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Bosnie-Herzégovine"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.605626"], ["updated_at", "2016-10-13 08:37:22.605626"]]
|
24534
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Bosnia-Erzegovina"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.606534"], ["updated_at", "2016-10-13 08:37:22.606534"]]
|
24535
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Bośnia i Hercegowina"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.607424"], ["updated_at", "2016-10-13 08:37:22.607424"]]
|
24536
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Босния и Герцеговина"], ["mgca_country_id", 4], ["created_at", "2016-10-13 08:37:22.608367"], ["updated_at", "2016-10-13 08:37:22.608367"]]
|
24537
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+359"], ["default_name", "Bulgaria"], ["iso_code", "BG"], ["created_at", "2016-10-13 08:37:22.612839"], ["updated_at", "2016-10-13 08:37:22.612839"]]
|
24538
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Bulharsko"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.614347"], ["updated_at", "2016-10-13 08:37:22.614347"]]
|
24539
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Bulgarien"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.615498"], ["updated_at", "2016-10-13 08:37:22.615498"]]
|
24540
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Bulgaria"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.616530"], ["updated_at", "2016-10-13 08:37:22.616530"]]
|
24541
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Bulgaria"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.617467"], ["updated_at", "2016-10-13 08:37:22.617467"]]
|
24542
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Bulgarie"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.618645"], ["updated_at", "2016-10-13 08:37:22.618645"]]
|
24543
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Bulgaria"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.619631"], ["updated_at", "2016-10-13 08:37:22.619631"]]
|
24544
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Bułgaria"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.620620"], ["updated_at", "2016-10-13 08:37:22.620620"]]
|
24545
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Болгария"], ["mgca_country_id", 5], ["created_at", "2016-10-13 08:37:22.621628"], ["updated_at", "2016-10-13 08:37:22.621628"]]
|
24546
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+1"], ["default_name", "Canada"], ["iso_code", "CA"], ["created_at", "2016-10-13 08:37:22.626384"], ["updated_at", "2016-10-13 08:37:22.626384"]]
|
24547
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Kanada"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.627788"], ["updated_at", "2016-10-13 08:37:22.627788"]]
|
24548
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Kanada"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.628822"], ["updated_at", "2016-10-13 08:37:22.628822"]]
|
24549
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Canada"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.629774"], ["updated_at", "2016-10-13 08:37:22.629774"]]
|
24550
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Canadá"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.630755"], ["updated_at", "2016-10-13 08:37:22.630755"]]
|
24551
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Canada"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.631659"], ["updated_at", "2016-10-13 08:37:22.631659"]]
|
24552
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Canada"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.632593"], ["updated_at", "2016-10-13 08:37:22.632593"]]
|
24553
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Kanada"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.633539"], ["updated_at", "2016-10-13 08:37:22.633539"]]
|
24554
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Канада"], ["mgca_country_id", 6], ["created_at", "2016-10-13 08:37:22.634494"], ["updated_at", "2016-10-13 08:37:22.634494"]]
|
24555
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+385"], ["default_name", "Croatia"], ["iso_code", "HR"], ["created_at", "2016-10-13 08:37:22.638820"], ["updated_at", "2016-10-13 08:37:22.638820"]]
|
24556
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Chorvatsko"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.639931"], ["updated_at", "2016-10-13 08:37:22.639931"]]
|
24557
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Kroatien"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.640943"], ["updated_at", "2016-10-13 08:37:22.640943"]]
|
24558
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Croatia"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.641943"], ["updated_at", "2016-10-13 08:37:22.641943"]]
|
24559
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Croacia"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.642980"], ["updated_at", "2016-10-13 08:37:22.642980"]]
|
24560
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Croatie"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.644061"], ["updated_at", "2016-10-13 08:37:22.644061"]]
|
24561
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Croazia"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.645021"], ["updated_at", "2016-10-13 08:37:22.645021"]]
|
24562
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Chorwacja"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.645946"], ["updated_at", "2016-10-13 08:37:22.645946"]]
|
24563
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Хорватия"], ["mgca_country_id", 7], ["created_at", "2016-10-13 08:37:22.646916"], ["updated_at", "2016-10-13 08:37:22.646916"]]
|
24564
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+357"], ["default_name", "Cyprus"], ["iso_code", "CY"], ["created_at", "2016-10-13 08:37:22.651564"], ["updated_at", "2016-10-13 08:37:22.651564"]]
|
24565
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Kypr"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.652745"], ["updated_at", "2016-10-13 08:37:22.652745"]]
|
24566
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Zypern"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.653704"], ["updated_at", "2016-10-13 08:37:22.653704"]]
|
24567
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Cyprus"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.654627"], ["updated_at", "2016-10-13 08:37:22.654627"]]
|
24568
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Chipre"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.655535"], ["updated_at", "2016-10-13 08:37:22.655535"]]
|
24569
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Chypre"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.656427"], ["updated_at", "2016-10-13 08:37:22.656427"]]
|
24570
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Cipro"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.657309"], ["updated_at", "2016-10-13 08:37:22.657309"]]
|
24571
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Cypr"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.658236"], ["updated_at", "2016-10-13 08:37:22.658236"]]
|
24572
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Кипр"], ["mgca_country_id", 8], ["created_at", "2016-10-13 08:37:22.659185"], ["updated_at", "2016-10-13 08:37:22.659185"]]
|
24573
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+420"], ["default_name", "Czech Republic"], ["iso_code", "CZ"], ["created_at", "2016-10-13 08:37:22.663472"], ["updated_at", "2016-10-13 08:37:22.663472"]]
|
24574
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Česká republika"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.664522"], ["updated_at", "2016-10-13 08:37:22.664522"]]
|
24575
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Tschechische Republik"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.665506"], ["updated_at", "2016-10-13 08:37:22.665506"]]
|
24576
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Czech Republic"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.666444"], ["updated_at", "2016-10-13 08:37:22.666444"]]
|
24577
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "República Checa"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.667404"], ["updated_at", "2016-10-13 08:37:22.667404"]]
|
24578
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Tchèque, République"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.668338"], ["updated_at", "2016-10-13 08:37:22.668338"]]
|
24579
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Repubblica Ceca"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.669308"], ["updated_at", "2016-10-13 08:37:22.669308"]]
|
24580
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Czechy"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.670278"], ["updated_at", "2016-10-13 08:37:22.670278"]]
|
24581
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Чешская Республика"], ["mgca_country_id", 9], ["created_at", "2016-10-13 08:37:22.671193"], ["updated_at", "2016-10-13 08:37:22.671193"]]
|
24582
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+45"], ["default_name", "Denmark"], ["iso_code", "DK"], ["created_at", "2016-10-13 08:37:22.675982"], ["updated_at", "2016-10-13 08:37:22.675982"]]
|
24583
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Dánsko"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.677296"], ["updated_at", "2016-10-13 08:37:22.677296"]]
|
24584
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Dänemark"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.678315"], ["updated_at", "2016-10-13 08:37:22.678315"]]
|
24585
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Denmark"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.679259"], ["updated_at", "2016-10-13 08:37:22.679259"]]
|
24586
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Dinamarca"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.680246"], ["updated_at", "2016-10-13 08:37:22.680246"]]
|
24587
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Danemark"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.681170"], ["updated_at", "2016-10-13 08:37:22.681170"]]
|
24588
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Danimarca"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.682055"], ["updated_at", "2016-10-13 08:37:22.682055"]]
|
24589
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Dania"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.683008"], ["updated_at", "2016-10-13 08:37:22.683008"]]
|
24590
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Дания"], ["mgca_country_id", 10], ["created_at", "2016-10-13 08:37:22.684102"], ["updated_at", "2016-10-13 08:37:22.684102"]]
|
24591
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+358"], ["default_name", "Finland"], ["iso_code", "FI"], ["created_at", "2016-10-13 08:37:22.688639"], ["updated_at", "2016-10-13 08:37:22.688639"]]
|
24592
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Finsko"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.689681"], ["updated_at", "2016-10-13 08:37:22.689681"]]
|
24593
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Finnland"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.690665"], ["updated_at", "2016-10-13 08:37:22.690665"]]
|
24594
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Finland"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.691642"], ["updated_at", "2016-10-13 08:37:22.691642"]]
|
24595
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Finlandia"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.692671"], ["updated_at", "2016-10-13 08:37:22.692671"]]
|
24596
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Finlande"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.693643"], ["updated_at", "2016-10-13 08:37:22.693643"]]
|
24597
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Finlandia"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.694578"], ["updated_at", "2016-10-13 08:37:22.694578"]]
|
24598
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Finlandia"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.695482"], ["updated_at", "2016-10-13 08:37:22.695482"]]
|
24599
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Финляндия"], ["mgca_country_id", 11], ["created_at", "2016-10-13 08:37:22.696442"], ["updated_at", "2016-10-13 08:37:22.696442"]]
|
24600
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+33"], ["default_name", "France"], ["iso_code", "FR"], ["created_at", "2016-10-13 08:37:22.701229"], ["updated_at", "2016-10-13 08:37:22.701229"]]
|
24601
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Francie"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.702483"], ["updated_at", "2016-10-13 08:37:22.702483"]]
|
24602
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Frankreich"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.703480"], ["updated_at", "2016-10-13 08:37:22.703480"]]
|
24603
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "France"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.704405"], ["updated_at", "2016-10-13 08:37:22.704405"]]
|
24604
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Francia"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.705346"], ["updated_at", "2016-10-13 08:37:22.705346"]]
|
24605
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "France"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.706247"], ["updated_at", "2016-10-13 08:37:22.706247"]]
|
24606
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Francia"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.707124"], ["updated_at", "2016-10-13 08:37:22.707124"]]
|
24607
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Francja"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.708013"], ["updated_at", "2016-10-13 08:37:22.708013"]]
|
24608
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Франция"], ["mgca_country_id", 12], ["created_at", "2016-10-13 08:37:22.708930"], ["updated_at", "2016-10-13 08:37:22.708930"]]
|
24609
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+49"], ["default_name", "Germany"], ["iso_code", "DE"], ["created_at", "2016-10-13 08:37:22.712986"], ["updated_at", "2016-10-13 08:37:22.712986"]]
|
24610
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Německo"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.713972"], ["updated_at", "2016-10-13 08:37:22.713972"]]
|
24611
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Deutschland"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.714936"], ["updated_at", "2016-10-13 08:37:22.714936"]]
|
24612
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Germany"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.715848"], ["updated_at", "2016-10-13 08:37:22.715848"]]
|
24613
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Alemania"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.716766"], ["updated_at", "2016-10-13 08:37:22.716766"]]
|
24614
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Allemagne"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.717668"], ["updated_at", "2016-10-13 08:37:22.717668"]]
|
24615
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Germania"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.718603"], ["updated_at", "2016-10-13 08:37:22.718603"]]
|
24616
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Niemcy"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.719541"], ["updated_at", "2016-10-13 08:37:22.719541"]]
|
24617
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Германия"], ["mgca_country_id", 13], ["created_at", "2016-10-13 08:37:22.720501"], ["updated_at", "2016-10-13 08:37:22.720501"]]
|
24618
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+30"], ["default_name", "Greece"], ["iso_code", "GR"], ["created_at", "2016-10-13 08:37:22.724842"], ["updated_at", "2016-10-13 08:37:22.724842"]]
|
24619
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Řecko"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.726051"], ["updated_at", "2016-10-13 08:37:22.726051"]]
|
24620
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Griechenland"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.727304"], ["updated_at", "2016-10-13 08:37:22.727304"]]
|
24621
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Greece"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.728420"], ["updated_at", "2016-10-13 08:37:22.728420"]]
|
24622
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Grecia"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.729374"], ["updated_at", "2016-10-13 08:37:22.729374"]]
|
24623
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Grèce"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.730301"], ["updated_at", "2016-10-13 08:37:22.730301"]]
|
24624
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Grecia"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.731318"], ["updated_at", "2016-10-13 08:37:22.731318"]]
|
24625
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Grecja"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.732393"], ["updated_at", "2016-10-13 08:37:22.732393"]]
|
24626
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Греция"], ["mgca_country_id", 14], ["created_at", "2016-10-13 08:37:22.733649"], ["updated_at", "2016-10-13 08:37:22.733649"]]
|
24627
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+36"], ["default_name", "Hungary"], ["iso_code", "HU"], ["created_at", "2016-10-13 08:37:22.738104"], ["updated_at", "2016-10-13 08:37:22.738104"]]
|
24628
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Maďarsko"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.739262"], ["updated_at", "2016-10-13 08:37:22.739262"]]
|
24629
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Ungarn"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.740254"], ["updated_at", "2016-10-13 08:37:22.740254"]]
|
24630
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Hungary"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.741208"], ["updated_at", "2016-10-13 08:37:22.741208"]]
|
24631
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Hungría"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.742100"], ["updated_at", "2016-10-13 08:37:22.742100"]]
|
24632
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Hongrie"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.743019"], ["updated_at", "2016-10-13 08:37:22.743019"]]
|
24633
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Ungheria"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.744331"], ["updated_at", "2016-10-13 08:37:22.744331"]]
|
24634
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Węgry"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.745596"], ["updated_at", "2016-10-13 08:37:22.745596"]]
|
24635
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Венгрия"], ["mgca_country_id", 15], ["created_at", "2016-10-13 08:37:22.746621"], ["updated_at", "2016-10-13 08:37:22.746621"]]
|
24636
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+353"], ["default_name", "Ireland"], ["iso_code", "IE"], ["created_at", "2016-10-13 08:37:22.751167"], ["updated_at", "2016-10-13 08:37:22.751167"]]
|
24637
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Irsko"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.752369"], ["updated_at", "2016-10-13 08:37:22.752369"]]
|
24638
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Irland"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.753332"], ["updated_at", "2016-10-13 08:37:22.753332"]]
|
24639
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Ireland"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.754233"], ["updated_at", "2016-10-13 08:37:22.754233"]]
|
24640
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Irlanda"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.755107"], ["updated_at", "2016-10-13 08:37:22.755107"]]
|
24641
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Irlande"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.756048"], ["updated_at", "2016-10-13 08:37:22.756048"]]
|
24642
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Irlanda"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.756929"], ["updated_at", "2016-10-13 08:37:22.756929"]]
|
24643
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Irlandia"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.757812"], ["updated_at", "2016-10-13 08:37:22.757812"]]
|
24644
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Ирландия"], ["mgca_country_id", 16], ["created_at", "2016-10-13 08:37:22.758698"], ["updated_at", "2016-10-13 08:37:22.758698"]]
|
24645
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+39"], ["default_name", "Italy"], ["iso_code", "IT"], ["created_at", "2016-10-13 08:37:22.762910"], ["updated_at", "2016-10-13 08:37:22.762910"]]
|
24646
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Itálie"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.763968"], ["updated_at", "2016-10-13 08:37:22.763968"]]
|
24647
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Italien"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.764924"], ["updated_at", "2016-10-13 08:37:22.764924"]]
|
24648
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Italy"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.765936"], ["updated_at", "2016-10-13 08:37:22.765936"]]
|
24649
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Italia"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.766868"], ["updated_at", "2016-10-13 08:37:22.766868"]]
|
24650
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Italie"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.767783"], ["updated_at", "2016-10-13 08:37:22.767783"]]
|
24651
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Italia"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.768794"], ["updated_at", "2016-10-13 08:37:22.768794"]]
|
24652
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Włochy"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.770157"], ["updated_at", "2016-10-13 08:37:22.770157"]]
|
24653
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Италия"], ["mgca_country_id", 17], ["created_at", "2016-10-13 08:37:22.771171"], ["updated_at", "2016-10-13 08:37:22.771171"]]
|
24654
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+371"], ["default_name", "Latvia"], ["iso_code", "LV"], ["created_at", "2016-10-13 08:37:22.776545"], ["updated_at", "2016-10-13 08:37:22.776545"]]
|
24655
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Lotyšsko"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.777716"], ["updated_at", "2016-10-13 08:37:22.777716"]]
|
24656
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Lettland"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.778734"], ["updated_at", "2016-10-13 08:37:22.778734"]]
|
24657
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Latvia"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.780007"], ["updated_at", "2016-10-13 08:37:22.780007"]]
|
24658
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Letonia"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.781028"], ["updated_at", "2016-10-13 08:37:22.781028"]]
|
24659
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Lettonie"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.781915"], ["updated_at", "2016-10-13 08:37:22.781915"]]
|
24660
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Lettonia"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.782858"], ["updated_at", "2016-10-13 08:37:22.782858"]]
|
24661
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Łotwa"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.783819"], ["updated_at", "2016-10-13 08:37:22.783819"]]
|
24662
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Латвия"], ["mgca_country_id", 18], ["created_at", "2016-10-13 08:37:22.784759"], ["updated_at", "2016-10-13 08:37:22.784759"]]
|
24663
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+423"], ["default_name", "Liechtenstein"], ["iso_code", "LI"], ["created_at", "2016-10-13 08:37:22.789297"], ["updated_at", "2016-10-13 08:37:22.789297"]]
|
24664
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Lichtenštejnsko"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.790361"], ["updated_at", "2016-10-13 08:37:22.790361"]]
|
24665
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Liechtenstein"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.791320"], ["updated_at", "2016-10-13 08:37:22.791320"]]
|
24666
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Liechtenstein"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.792201"], ["updated_at", "2016-10-13 08:37:22.792201"]]
|
24667
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Liechtenstein"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.793123"], ["updated_at", "2016-10-13 08:37:22.793123"]]
|
24668
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Liechtenstein"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.794024"], ["updated_at", "2016-10-13 08:37:22.794024"]]
|
24669
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Liechtenstein"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.794923"], ["updated_at", "2016-10-13 08:37:22.794923"]]
|
24670
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Liechtenstein"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.795830"], ["updated_at", "2016-10-13 08:37:22.795830"]]
|
24671
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Лихтенштейн"], ["mgca_country_id", 19], ["created_at", "2016-10-13 08:37:22.796703"], ["updated_at", "2016-10-13 08:37:22.796703"]]
|
24672
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+370"], ["default_name", "Lithuania"], ["iso_code", "LT"], ["created_at", "2016-10-13 08:37:22.800848"], ["updated_at", "2016-10-13 08:37:22.800848"]]
|
24673
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Litva"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.802060"], ["updated_at", "2016-10-13 08:37:22.802060"]]
|
24674
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Litauen"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.803040"], ["updated_at", "2016-10-13 08:37:22.803040"]]
|
24675
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Lithuania"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.803948"], ["updated_at", "2016-10-13 08:37:22.803948"]]
|
24676
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Lituania"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.804828"], ["updated_at", "2016-10-13 08:37:22.804828"]]
|
24677
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Lituanie"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.805706"], ["updated_at", "2016-10-13 08:37:22.805706"]]
|
24678
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Lituania"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.806628"], ["updated_at", "2016-10-13 08:37:22.806628"]]
|
24679
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Litwa"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.807539"], ["updated_at", "2016-10-13 08:37:22.807539"]]
|
24680
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Литва"], ["mgca_country_id", 20], ["created_at", "2016-10-13 08:37:22.808458"], ["updated_at", "2016-10-13 08:37:22.808458"]]
|
24681
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+352"], ["default_name", "Luxembourg"], ["iso_code", "LU"], ["created_at", "2016-10-13 08:37:22.812685"], ["updated_at", "2016-10-13 08:37:22.812685"]]
|
24682
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Lucembursko"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.813699"], ["updated_at", "2016-10-13 08:37:22.813699"]]
|
24683
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Luxemburg"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.814648"], ["updated_at", "2016-10-13 08:37:22.814648"]]
|
24684
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Luxembourg"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.815638"], ["updated_at", "2016-10-13 08:37:22.815638"]]
|
24685
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Luxemburgo"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.816550"], ["updated_at", "2016-10-13 08:37:22.816550"]]
|
24686
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Luxembourg"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.817453"], ["updated_at", "2016-10-13 08:37:22.817453"]]
|
24687
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Lussemburgo"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.818482"], ["updated_at", "2016-10-13 08:37:22.818482"]]
|
24688
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Luksemburg"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.819979"], ["updated_at", "2016-10-13 08:37:22.819979"]]
|
24689
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Люксембург"], ["mgca_country_id", 21], ["created_at", "2016-10-13 08:37:22.821020"], ["updated_at", "2016-10-13 08:37:22.821020"]]
|
24690
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+31"], ["default_name", "Netherlands"], ["iso_code", "NL"], ["created_at", "2016-10-13 08:37:22.825848"], ["updated_at", "2016-10-13 08:37:22.825848"]]
|
24691
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Nizozemsko"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.827245"], ["updated_at", "2016-10-13 08:37:22.827245"]]
|
24692
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Niederlande"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.828218"], ["updated_at", "2016-10-13 08:37:22.828218"]]
|
24693
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Netherlands"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.829269"], ["updated_at", "2016-10-13 08:37:22.829269"]]
|
24694
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Países Bajos"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.830151"], ["updated_at", "2016-10-13 08:37:22.830151"]]
|
24695
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Pays-Bas"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.831127"], ["updated_at", "2016-10-13 08:37:22.831127"]]
|
24696
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Paesi Bassi"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.832099"], ["updated_at", "2016-10-13 08:37:22.832099"]]
|
24697
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Holandia"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.833086"], ["updated_at", "2016-10-13 08:37:22.833086"]]
|
24698
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Нидерланды"], ["mgca_country_id", 22], ["created_at", "2016-10-13 08:37:22.834006"], ["updated_at", "2016-10-13 08:37:22.834006"]]
|
24699
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+47"], ["default_name", "Norway"], ["iso_code", "NO"], ["created_at", "2016-10-13 08:37:22.838353"], ["updated_at", "2016-10-13 08:37:22.838353"]]
|
24700
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Norsko"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.839398"], ["updated_at", "2016-10-13 08:37:22.839398"]]
|
24701
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Norwegen"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.840329"], ["updated_at", "2016-10-13 08:37:22.840329"]]
|
24702
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Norway"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.841313"], ["updated_at", "2016-10-13 08:37:22.841313"]]
|
24703
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Noruega"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.842184"], ["updated_at", "2016-10-13 08:37:22.842184"]]
|
24704
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Norvège"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.843113"], ["updated_at", "2016-10-13 08:37:22.843113"]]
|
24705
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Norvegia"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.844064"], ["updated_at", "2016-10-13 08:37:22.844064"]]
|
24706
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Norwegia"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.845015"], ["updated_at", "2016-10-13 08:37:22.845015"]]
|
24707
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Норвегия"], ["mgca_country_id", 23], ["created_at", "2016-10-13 08:37:22.845949"], ["updated_at", "2016-10-13 08:37:22.845949"]]
|
24708
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+48"], ["default_name", "Poland"], ["iso_code", "PL"], ["created_at", "2016-10-13 08:37:22.850107"], ["updated_at", "2016-10-13 08:37:22.850107"]]
|
24709
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Polsko"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.851113"], ["updated_at", "2016-10-13 08:37:22.851113"]]
|
24710
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Polen"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.852133"], ["updated_at", "2016-10-13 08:37:22.852133"]]
|
24711
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Poland"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.853099"], ["updated_at", "2016-10-13 08:37:22.853099"]]
|
24712
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Polonia"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.853995"], ["updated_at", "2016-10-13 08:37:22.853995"]]
|
24713
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Pologne"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.854881"], ["updated_at", "2016-10-13 08:37:22.854881"]]
|
24714
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Polonia"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.855770"], ["updated_at", "2016-10-13 08:37:22.855770"]]
|
24715
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Polska"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.856678"], ["updated_at", "2016-10-13 08:37:22.856678"]]
|
24716
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Польша"], ["mgca_country_id", 24], ["created_at", "2016-10-13 08:37:22.857571"], ["updated_at", "2016-10-13 08:37:22.857571"]]
|
24717
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+351"], ["default_name", "Portugal"], ["iso_code", "PT"], ["created_at", "2016-10-13 08:37:22.861806"], ["updated_at", "2016-10-13 08:37:22.861806"]]
|
24718
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Portugalsko"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.862892"], ["updated_at", "2016-10-13 08:37:22.862892"]]
|
24719
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Portugal"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.863847"], ["updated_at", "2016-10-13 08:37:22.863847"]]
|
24720
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Portugal"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.864838"], ["updated_at", "2016-10-13 08:37:22.864838"]]
|
24721
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Portugal"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.865803"], ["updated_at", "2016-10-13 08:37:22.865803"]]
|
24722
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Portugal"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.866685"], ["updated_at", "2016-10-13 08:37:22.866685"]]
|
24723
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Portogallo"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.867682"], ["updated_at", "2016-10-13 08:37:22.867682"]]
|
24724
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Portugalia"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.869098"], ["updated_at", "2016-10-13 08:37:22.869098"]]
|
24725
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Португалия"], ["mgca_country_id", 25], ["created_at", "2016-10-13 08:37:22.870122"], ["updated_at", "2016-10-13 08:37:22.870122"]]
|
24726
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+40"], ["default_name", "Romania"], ["iso_code", "RO"], ["created_at", "2016-10-13 08:37:22.874653"], ["updated_at", "2016-10-13 08:37:22.874653"]]
|
24727
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Rumunsko"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.875863"], ["updated_at", "2016-10-13 08:37:22.875863"]]
|
24728
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Rumänien"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.876989"], ["updated_at", "2016-10-13 08:37:22.876989"]]
|
24729
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Romania"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.877925"], ["updated_at", "2016-10-13 08:37:22.877925"]]
|
24730
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Rumanía"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.878834"], ["updated_at", "2016-10-13 08:37:22.878834"]]
|
24731
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Roumanie"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.879831"], ["updated_at", "2016-10-13 08:37:22.879831"]]
|
24732
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Romania"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.880742"], ["updated_at", "2016-10-13 08:37:22.880742"]]
|
24733
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Rumunia"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.881675"], ["updated_at", "2016-10-13 08:37:22.881675"]]
|
24734
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Румыния"], ["mgca_country_id", 26], ["created_at", "2016-10-13 08:37:22.882676"], ["updated_at", "2016-10-13 08:37:22.882676"]]
|
24735
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+7"], ["default_name", "Russian Federation"], ["iso_code", "RU"], ["created_at", "2016-10-13 08:37:22.887119"], ["updated_at", "2016-10-13 08:37:22.887119"]]
|
24736
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Ruská federace"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.888194"], ["updated_at", "2016-10-13 08:37:22.888194"]]
|
24737
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Russische Föderation"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.889132"], ["updated_at", "2016-10-13 08:37:22.889132"]]
|
24738
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Russian Federation"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.890066"], ["updated_at", "2016-10-13 08:37:22.890066"]]
|
24739
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Federación Rusa"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.890993"], ["updated_at", "2016-10-13 08:37:22.890993"]]
|
24740
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Russie, Fédération de"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.891967"], ["updated_at", "2016-10-13 08:37:22.891967"]]
|
24741
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Russia"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.892893"], ["updated_at", "2016-10-13 08:37:22.892893"]]
|
24742
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Federacja Rosyjska"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.893817"], ["updated_at", "2016-10-13 08:37:22.893817"]]
|
24743
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Российская Федерация"], ["mgca_country_id", 27], ["created_at", "2016-10-13 08:37:22.894753"], ["updated_at", "2016-10-13 08:37:22.894753"]]
|
24744
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+381"], ["default_name", "Serbia"], ["iso_code", "RS"], ["created_at", "2016-10-13 08:37:22.899443"], ["updated_at", "2016-10-13 08:37:22.899443"]]
|
24745
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Srbsko"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.900737"], ["updated_at", "2016-10-13 08:37:22.900737"]]
|
24746
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Serbien"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.901758"], ["updated_at", "2016-10-13 08:37:22.901758"]]
|
24747
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Serbia"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.902682"], ["updated_at", "2016-10-13 08:37:22.902682"]]
|
24748
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Serbia"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.903680"], ["updated_at", "2016-10-13 08:37:22.903680"]]
|
24749
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Serbie"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.904581"], ["updated_at", "2016-10-13 08:37:22.904581"]]
|
24750
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Serbia"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.905515"], ["updated_at", "2016-10-13 08:37:22.905515"]]
|
24751
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Serbia"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.906419"], ["updated_at", "2016-10-13 08:37:22.906419"]]
|
24752
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Сербия"], ["mgca_country_id", 28], ["created_at", "2016-10-13 08:37:22.907300"], ["updated_at", "2016-10-13 08:37:22.907300"]]
|
24753
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+421"], ["default_name", "Slovakia"], ["iso_code", "SK"], ["created_at", "2016-10-13 08:37:22.911565"], ["updated_at", "2016-10-13 08:37:22.911565"]]
|
24754
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Slovensko"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.912605"], ["updated_at", "2016-10-13 08:37:22.912605"]]
|
24755
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Slowakei"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.913531"], ["updated_at", "2016-10-13 08:37:22.913531"]]
|
24756
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Slovakia"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.914442"], ["updated_at", "2016-10-13 08:37:22.914442"]]
|
24757
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Eslovaquia"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.915381"], ["updated_at", "2016-10-13 08:37:22.915381"]]
|
24758
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Slovaquie"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.916302"], ["updated_at", "2016-10-13 08:37:22.916302"]]
|
24759
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Slovacchia"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.917280"], ["updated_at", "2016-10-13 08:37:22.917280"]]
|
24760
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Słowacja"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.918717"], ["updated_at", "2016-10-13 08:37:22.918717"]]
|
24761
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Словакия"], ["mgca_country_id", 29], ["created_at", "2016-10-13 08:37:22.919932"], ["updated_at", "2016-10-13 08:37:22.919932"]]
|
24762
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+386"], ["default_name", "Slovenia"], ["iso_code", "SI"], ["created_at", "2016-10-13 08:37:22.924418"], ["updated_at", "2016-10-13 08:37:22.924418"]]
|
24763
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Slovinsko"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.925768"], ["updated_at", "2016-10-13 08:37:22.925768"]]
|
24764
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Slowenien"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.926965"], ["updated_at", "2016-10-13 08:37:22.926965"]]
|
24765
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Slovenia"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.927914"], ["updated_at", "2016-10-13 08:37:22.927914"]]
|
24766
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Eslovenia"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.928842"], ["updated_at", "2016-10-13 08:37:22.928842"]]
|
24767
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Slovénie"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.929870"], ["updated_at", "2016-10-13 08:37:22.929870"]]
|
24768
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Slovenia"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.930857"], ["updated_at", "2016-10-13 08:37:22.930857"]]
|
24769
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Słowenia"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.931834"], ["updated_at", "2016-10-13 08:37:22.931834"]]
|
24770
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Словения"], ["mgca_country_id", 30], ["created_at", "2016-10-13 08:37:22.932807"], ["updated_at", "2016-10-13 08:37:22.932807"]]
|
24771
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+34"], ["default_name", "Spain"], ["iso_code", "ES"], ["created_at", "2016-10-13 08:37:22.937162"], ["updated_at", "2016-10-13 08:37:22.937162"]]
|
24772
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Španělsko"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.938226"], ["updated_at", "2016-10-13 08:37:22.938226"]]
|
24773
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Spanien"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.939152"], ["updated_at", "2016-10-13 08:37:22.939152"]]
|
24774
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Spain"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.940063"], ["updated_at", "2016-10-13 08:37:22.940063"]]
|
24775
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "España"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.940948"], ["updated_at", "2016-10-13 08:37:22.940948"]]
|
24776
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Espagne"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.941835"], ["updated_at", "2016-10-13 08:37:22.941835"]]
|
24777
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Spagna"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.942789"], ["updated_at", "2016-10-13 08:37:22.942789"]]
|
24778
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Hiszpania"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.943728"], ["updated_at", "2016-10-13 08:37:22.943728"]]
|
24779
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Испания"], ["mgca_country_id", 31], ["created_at", "2016-10-13 08:37:22.944688"], ["updated_at", "2016-10-13 08:37:22.944688"]]
|
24780
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+46"], ["default_name", "Sweden"], ["iso_code", "SE"], ["created_at", "2016-10-13 08:37:22.949092"], ["updated_at", "2016-10-13 08:37:22.949092"]]
|
24781
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Švédsko"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.950156"], ["updated_at", "2016-10-13 08:37:22.950156"]]
|
24782
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Schweden"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.951149"], ["updated_at", "2016-10-13 08:37:22.951149"]]
|
24783
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Sweden"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.952120"], ["updated_at", "2016-10-13 08:37:22.952120"]]
|
24784
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Suecia"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.953012"], ["updated_at", "2016-10-13 08:37:22.953012"]]
|
24785
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Suède"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.953915"], ["updated_at", "2016-10-13 08:37:22.953915"]]
|
24786
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Svezia"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.954816"], ["updated_at", "2016-10-13 08:37:22.954816"]]
|
24787
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Szwecja"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.955771"], ["updated_at", "2016-10-13 08:37:22.955771"]]
|
24788
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Швеция"], ["mgca_country_id", 32], ["created_at", "2016-10-13 08:37:22.956671"], ["updated_at", "2016-10-13 08:37:22.956671"]]
|
24789
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+41"], ["default_name", "Switzerland"], ["iso_code", "CH"], ["created_at", "2016-10-13 08:37:22.960923"], ["updated_at", "2016-10-13 08:37:22.960923"]]
|
24790
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Švýcarsko"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.961966"], ["updated_at", "2016-10-13 08:37:22.961966"]]
|
24791
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Schweiz"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.962907"], ["updated_at", "2016-10-13 08:37:22.962907"]]
|
24792
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "Switzerland"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.963811"], ["updated_at", "2016-10-13 08:37:22.963811"]]
|
24793
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Suiza"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.964708"], ["updated_at", "2016-10-13 08:37:22.964708"]]
|
24794
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Suisse"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.965600"], ["updated_at", "2016-10-13 08:37:22.965600"]]
|
24795
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Svizzera"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.966520"], ["updated_at", "2016-10-13 08:37:22.966520"]]
|
24796
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Szwajcaria"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.967723"], ["updated_at", "2016-10-13 08:37:22.967723"]]
|
24797
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Швейцария"], ["mgca_country_id", 33], ["created_at", "2016-10-13 08:37:22.968976"], ["updated_at", "2016-10-13 08:37:22.968976"]]
|
24798
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+380"], ["default_name", "Ukraine"], ["iso_code", "UA"], ["created_at", "2016-10-13 08:37:22.973501"], ["updated_at", "2016-10-13 08:37:22.973501"]]
|
24799
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Ukrajina"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.974630"], ["updated_at", "2016-10-13 08:37:22.974630"]]
|
24800
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Ukraine"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.975796"], ["updated_at", "2016-10-13 08:37:22.975796"]]
|
24801
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "Ukraine"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.976719"], ["updated_at", "2016-10-13 08:37:22.976719"]]
|
24802
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Ucrania"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.977642"], ["updated_at", "2016-10-13 08:37:22.977642"]]
|
24803
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "Ukraine"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.978650"], ["updated_at", "2016-10-13 08:37:22.978650"]]
|
24804
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Ucraina"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.979628"], ["updated_at", "2016-10-13 08:37:22.979628"]]
|
24805
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Ukraina"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.980509"], ["updated_at", "2016-10-13 08:37:22.980509"]]
|
24806
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Украина"], ["mgca_country_id", 34], ["created_at", "2016-10-13 08:37:22.981501"], ["updated_at", "2016-10-13 08:37:22.981501"]]
|
24807
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["dial_code", "+44"], ["default_name", "United Kingdom"], ["iso_code", "GB"], ["created_at", "2016-10-13 08:37:22.986454"], ["updated_at", "2016-10-13 08:37:22.986454"]]
|
24808
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "cs"], ["name", "Spojené království"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.987595"], ["updated_at", "2016-10-13 08:37:22.987595"]]
|
24809
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "de"], ["name", "Vereinigtes Königreich"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.988576"], ["updated_at", "2016-10-13 08:37:22.988576"]]
|
24810
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "en"], ["name", "United Kingdom"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.989497"], ["updated_at", "2016-10-13 08:37:22.989497"]]
|
24811
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "es"], ["name", "Reino Unido"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.990420"], ["updated_at", "2016-10-13 08:37:22.990420"]]
|
24812
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "fr"], ["name", "Royaume-Uni"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.991277"], ["updated_at", "2016-10-13 08:37:22.991277"]]
|
24813
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "it"], ["name", "Regno Unito"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.992207"], ["updated_at", "2016-10-13 08:37:22.992207"]]
|
24814
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "pl"], ["name", "Wielka Brytania"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.993122"], ["updated_at", "2016-10-13 08:37:22.993122"]]
|
24815
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "ru"], ["name", "Соединённое Королевство"], ["mgca_country_id", 35], ["created_at", "2016-10-13 08:37:22.994018"], ["updated_at", "2016-10-13 08:37:22.994018"]]
|
24816
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_countries" ("dial_code", "default_name", "iso_code", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["dial_code", "+1"], ["default_name", "United States"], ["iso_code", "US"], ["created_at", "2016-10-13 08:37:22.998314"], ["updated_at", "2016-10-13 08:37:22.998314"]]
|
24817
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "cs"], ["name", "Spojené státy"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:22.999469"], ["updated_at", "2016-10-13 08:37:22.999469"]]
|
24818
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "de"], ["name", "Vereinigte Staaten"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:23.000469"], ["updated_at", "2016-10-13 08:37:23.000469"]]
|
24819
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "en"], ["name", "United States"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:23.001477"], ["updated_at", "2016-10-13 08:37:23.001477"]]
|
24820
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "es"], ["name", "Estados Unidos"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:23.002413"], ["updated_at", "2016-10-13 08:37:23.002413"]]
|
24821
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "fr"], ["name", "États-Unis"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:23.003322"], ["updated_at", "2016-10-13 08:37:23.003322"]]
|
24822
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "it"], ["name", "Stati Uniti"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:23.004227"], ["updated_at", "2016-10-13 08:37:23.004227"]]
|
24823
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["locale", "pl"], ["name", "Stany Zjednoczone"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:23.005125"], ["updated_at", "2016-10-13 08:37:23.005125"]]
|
24824
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "mgca_country_translations" ("locale", "name", "mgca_country_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["locale", "ru"], ["name", "Соединённые штаты"], ["mgca_country_id", 36], ["created_at", "2016-10-13 08:37:23.006078"], ["updated_at", "2016-10-13 08:37:23.006078"]]
|
24825
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "mgca_countries"[0m
|
24826
|
+
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/austin/Sites/berlinmagic/magic_addresses/spec/dummy/db/migrate/20150225220219_add_magic_addresses.rb:84)
|
24827
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "mgca_states" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "country_id" integer, "created_at" timestamp, "updated_at" timestamp)
|
24828
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_states_on_country_id" ON "mgca_states" ("country_id")[0m
|
24829
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "mgca_state_translations" ("id" serial primary key, "mgca_state_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
24830
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "mgca_state_translations" ADD "name" character varying[0m
|
24831
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_state_translations_on_mgca_state_id" ON "mgca_state_translations" ("mgca_state_id")
|
24832
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_state_translations_on_locale" ON "mgca_state_translations" ("locale")[0m
|
24833
|
+
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/austin/Sites/berlinmagic/magic_addresses/spec/dummy/db/migrate/20150225220219_add_magic_addresses.rb:102)
|
24834
|
+
[1m[35m (2.1ms)[0m CREATE TABLE "mgca_cities" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "state_id" integer, "country_id" integer, "created_at" timestamp, "updated_at" timestamp)
|
24835
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_cities_on_state_id" ON "mgca_cities" ("state_id")[0m
|
24836
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_cities_on_country_id" ON "mgca_cities" ("country_id")
|
24837
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_city_translations" ("id" serial primary key, "mgca_city_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24838
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "mgca_city_translations" ADD "name" character varying
|
24839
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_city_translations_on_mgca_city_id" ON "mgca_city_translations" ("mgca_city_id")[0m
|
24840
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_city_translations_on_locale" ON "mgca_city_translations" ("locale")
|
24841
|
+
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/austin/Sites/berlinmagic/magic_addresses/spec/dummy/db/migrate/20150225220219_add_magic_addresses.rb:120)
|
24842
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "mgca_districts" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "city_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
24843
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_districts_on_city_id" ON "mgca_districts" ("city_id")
|
24844
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_district_translations" ("id" serial primary key, "mgca_district_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24845
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "mgca_district_translations" ADD "name" character varying
|
24846
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_district_translations_on_mgca_district_id" ON "mgca_district_translations" ("mgca_district_id")[0m
|
24847
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_district_translations_on_locale" ON "mgca_district_translations" ("locale")
|
24848
|
+
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/austin/Sites/berlinmagic/magic_addresses/spec/dummy/db/migrate/20150225220219_add_magic_addresses.rb:138)
|
24849
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "mgca_subdistricts" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "district_id" integer, "city_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
24850
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_subdistricts_on_district_id" ON "mgca_subdistricts" ("district_id")
|
24851
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_subdistricts_on_city_id" ON "mgca_subdistricts" ("city_id")[0m
|
24852
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "mgca_subdistrict_translations" ("id" serial primary key, "mgca_subdistrict_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
24853
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "mgca_subdistrict_translations" ADD "name" character varying[0m
|
24854
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_mgca_subdistrict_translations_on_mgca_subdistrict_id" ON "mgca_subdistrict_translations" ("mgca_subdistrict_id")
|
24855
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_mgca_subdistrict_translations_on_locale" ON "mgca_subdistrict_translations" ("locale")[0m
|
24856
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150225220219"]]
|
24857
|
+
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
|
24858
|
+
Migrating to CreateCompanies (20151111133333)
|
24859
|
+
[1m[35m (1.1ms)[0m BEGIN
|
24860
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "companies" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24861
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151111133333"]]
|
24862
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
24863
|
+
Migrating to UpdateMagicAddresses (20151118102658)
|
24864
|
+
[1m[35m (0.2ms)[0m BEGIN
|
24865
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "mgca_addressibles" ("id" serial primary key, "default" boolean, "name" character varying, "owner_id" integer, "owner_type" character varying, "address_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24866
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_mgca_addressibles_on_owner_type_and_owner_id" ON "mgca_addressibles" ("owner_type", "owner_id")
|
24867
|
+
[1m[36m (2.2ms)[0m [1mCREATE INDEX "index_mgca_addressibles_on_address_id" ON "mgca_addressibles" ("address_id")[0m
|
24868
|
+
[1m[35m (8.1ms)[0m ALTER TABLE "mgca_addresses" ADD "status" character varying DEFAULT 'new'
|
24869
|
+
[1m[36mMagicAddresses::Address Load (0.4ms)[0m [1mSELECT "mgca_addresses".* FROM "mgca_addresses"[0m
|
24870
|
+
[1m[35m (0.3ms)[0m DROP INDEX "index_mgca_addresses_on_owner_type_and_owner_id"
|
24871
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "mgca_addresses" DROP "owner_type"[0m
|
24872
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "mgca_addresses" DROP "owner_id"
|
24873
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "mgca_addresses" DROP "default"[0m
|
24874
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151118102658"]]
|
24875
|
+
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
|
24876
|
+
Migrating to CreateCustomers (20161013083634)
|
24877
|
+
[1m[35m (0.3ms)[0m BEGIN
|
24878
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "customers" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
24879
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20161013083634"]]
|
24880
|
+
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
24881
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
24882
|
+
[1m[36m (1.7ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24883
|
+
FROM pg_constraint c
|
24884
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24885
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24886
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24887
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24888
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24889
|
+
WHERE c.contype = 'f'
|
24890
|
+
AND t1.relname = 'companies'
|
24891
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24892
|
+
ORDER BY c.conname
|
24893
|
+
[0m
|
24894
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24895
|
+
FROM pg_constraint c
|
24896
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24897
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24898
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24899
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24900
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24901
|
+
WHERE c.contype = 'f'
|
24902
|
+
AND t1.relname = 'customers'
|
24903
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24904
|
+
ORDER BY c.conname
|
24905
|
+
|
24906
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24907
|
+
FROM pg_constraint c
|
24908
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24909
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24910
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24911
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24912
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24913
|
+
WHERE c.contype = 'f'
|
24914
|
+
AND t1.relname = 'mgca_address_translations'
|
24915
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24916
|
+
ORDER BY c.conname
|
24917
|
+
[0m
|
24918
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24919
|
+
FROM pg_constraint c
|
24920
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24921
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24922
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24923
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24924
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24925
|
+
WHERE c.contype = 'f'
|
24926
|
+
AND t1.relname = 'mgca_addresses'
|
24927
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24928
|
+
ORDER BY c.conname
|
24929
|
+
|
24930
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24931
|
+
FROM pg_constraint c
|
24932
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24933
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24934
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24935
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24936
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24937
|
+
WHERE c.contype = 'f'
|
24938
|
+
AND t1.relname = 'mgca_addressibles'
|
24939
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24940
|
+
ORDER BY c.conname
|
24941
|
+
[0m
|
24942
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24943
|
+
FROM pg_constraint c
|
24944
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24945
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24946
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24947
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24948
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24949
|
+
WHERE c.contype = 'f'
|
24950
|
+
AND t1.relname = 'mgca_cities'
|
24951
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24952
|
+
ORDER BY c.conname
|
24953
|
+
|
24954
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24955
|
+
FROM pg_constraint c
|
24956
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24957
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24958
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24959
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24960
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24961
|
+
WHERE c.contype = 'f'
|
24962
|
+
AND t1.relname = 'mgca_city_translations'
|
24963
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24964
|
+
ORDER BY c.conname
|
24965
|
+
[0m
|
24966
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24967
|
+
FROM pg_constraint c
|
24968
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24969
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24970
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24971
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24972
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24973
|
+
WHERE c.contype = 'f'
|
24974
|
+
AND t1.relname = 'mgca_countries'
|
24975
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24976
|
+
ORDER BY c.conname
|
24977
|
+
|
24978
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24979
|
+
FROM pg_constraint c
|
24980
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24981
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24982
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24983
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24984
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24985
|
+
WHERE c.contype = 'f'
|
24986
|
+
AND t1.relname = 'mgca_country_translations'
|
24987
|
+
AND t3.nspname = ANY (current_schemas(false))
|
24988
|
+
ORDER BY c.conname
|
24989
|
+
[0m
|
24990
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
24991
|
+
FROM pg_constraint c
|
24992
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
24993
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
24994
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
24995
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
24996
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
24997
|
+
WHERE c.contype = 'f'
|
24998
|
+
AND t1.relname = 'mgca_district_translations'
|
24999
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25000
|
+
ORDER BY c.conname
|
25001
|
+
|
25002
|
+
[1m[36m (1.5ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25003
|
+
FROM pg_constraint c
|
25004
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25005
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25006
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25007
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25008
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25009
|
+
WHERE c.contype = 'f'
|
25010
|
+
AND t1.relname = 'mgca_districts'
|
25011
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25012
|
+
ORDER BY c.conname
|
25013
|
+
[0m
|
25014
|
+
[1m[35m (1.5ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25015
|
+
FROM pg_constraint c
|
25016
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25017
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25018
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25019
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25020
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25021
|
+
WHERE c.contype = 'f'
|
25022
|
+
AND t1.relname = 'mgca_state_translations'
|
25023
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25024
|
+
ORDER BY c.conname
|
25025
|
+
|
25026
|
+
[1m[36m (1.5ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25027
|
+
FROM pg_constraint c
|
25028
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25029
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25030
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25031
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25032
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25033
|
+
WHERE c.contype = 'f'
|
25034
|
+
AND t1.relname = 'mgca_states'
|
25035
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25036
|
+
ORDER BY c.conname
|
25037
|
+
[0m
|
25038
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25039
|
+
FROM pg_constraint c
|
25040
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25041
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25042
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25043
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25044
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25045
|
+
WHERE c.contype = 'f'
|
25046
|
+
AND t1.relname = 'mgca_subdistrict_translations'
|
25047
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25048
|
+
ORDER BY c.conname
|
25049
|
+
|
25050
|
+
[1m[36m (1.6ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25051
|
+
FROM pg_constraint c
|
25052
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25053
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25054
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25055
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25056
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25057
|
+
WHERE c.contype = 'f'
|
25058
|
+
AND t1.relname = 'mgca_subdistricts'
|
25059
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25060
|
+
ORDER BY c.conname
|
25061
|
+
[0m
|
25062
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25063
|
+
FROM pg_constraint c
|
25064
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25065
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25066
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25067
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25068
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25069
|
+
WHERE c.contype = 'f'
|
25070
|
+
AND t1.relname = 'users'
|
25071
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25072
|
+
ORDER BY c.conname
|
25073
|
+
|
25074
|
+
[1m[36m (122.2ms)[0m [1mDROP DATABASE IF EXISTS "mgca_addresses_test"[0m
|
25075
|
+
[1m[35m (330.4ms)[0m CREATE DATABASE "mgca_addresses_test" ENCODING = 'unicode'
|
25076
|
+
[1m[36mSQL (0.3ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
25077
|
+
[1m[35m (4.7ms)[0m CREATE TABLE "companies" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
25078
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "customers" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
25079
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "mgca_address_translations" ("id" serial primary key, "mgca_address_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "street_name" character varying)
|
25080
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_mgca_address_translations_on_locale" ON "mgca_address_translations" USING btree ("locale")[0m
|
25081
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_address_translations_on_mgca_address_id" ON "mgca_address_translations" USING btree ("mgca_address_id")
|
25082
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_addresses" ("id" serial primary key, "name" character varying, "fetch_address" text, "street_default" character varying, "street_number" character varying, "street_additional" character varying, "zipcode" integer, "longitude" float, "latitude" float, "subdistrict_id" integer, "district_id" integer, "city_id" integer, "state_id" integer, "country_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "status" character varying DEFAULT 'new') [0m
|
25083
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_mgca_addresses_on_city_id" ON "mgca_addresses" USING btree ("city_id")
|
25084
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_addresses_on_country_id" ON "mgca_addresses" USING btree ("country_id")[0m
|
25085
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_addresses_on_district_id" ON "mgca_addresses" USING btree ("district_id")
|
25086
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_addresses_on_state_id" ON "mgca_addresses" USING btree ("state_id")[0m
|
25087
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_mgca_addresses_on_subdistrict_id" ON "mgca_addresses" USING btree ("subdistrict_id")
|
25088
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_addressibles" ("id" serial primary key, "default" boolean, "name" character varying, "owner_id" integer, "owner_type" character varying, "address_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
25089
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_addressibles_on_address_id" ON "mgca_addressibles" USING btree ("address_id")
|
25090
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_mgca_addressibles_on_owner_type_and_owner_id" ON "mgca_addressibles" USING btree ("owner_type", "owner_id")[0m
|
25091
|
+
[1m[35m (3.0ms)[0m CREATE TABLE "mgca_cities" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "state_id" integer, "country_id" integer, "created_at" timestamp, "updated_at" timestamp)
|
25092
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_mgca_cities_on_country_id" ON "mgca_cities" USING btree ("country_id")[0m
|
25093
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_cities_on_state_id" ON "mgca_cities" USING btree ("state_id")
|
25094
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "mgca_city_translations" ("id" serial primary key, "mgca_city_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying) [0m
|
25095
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_mgca_city_translations_on_locale" ON "mgca_city_translations" USING btree ("locale")
|
25096
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_mgca_city_translations_on_mgca_city_id" ON "mgca_city_translations" USING btree ("mgca_city_id")[0m
|
25097
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "mgca_countries" ("id" serial primary key, "default_name" character varying, "iso_code" character varying(2), "dial_code" character varying, "fsm_state" character varying DEFAULT 'new', "created_at" timestamp, "updated_at" timestamp)
|
25098
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "mgca_country_translations" ("id" serial primary key, "mgca_country_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying) [0m
|
25099
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_country_translations_on_locale" ON "mgca_country_translations" USING btree ("locale")
|
25100
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_country_translations_on_mgca_country_id" ON "mgca_country_translations" USING btree ("mgca_country_id")[0m
|
25101
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "mgca_district_translations" ("id" serial primary key, "mgca_district_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying)
|
25102
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_mgca_district_translations_on_locale" ON "mgca_district_translations" USING btree ("locale")[0m
|
25103
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_district_translations_on_mgca_district_id" ON "mgca_district_translations" USING btree ("mgca_district_id")
|
25104
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "mgca_districts" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "city_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
25105
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_districts_on_city_id" ON "mgca_districts" USING btree ("city_id")
|
25106
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_state_translations" ("id" serial primary key, "mgca_state_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying) [0m
|
25107
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_mgca_state_translations_on_locale" ON "mgca_state_translations" USING btree ("locale")
|
25108
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_state_translations_on_mgca_state_id" ON "mgca_state_translations" USING btree ("mgca_state_id")[0m
|
25109
|
+
[1m[35m (5.5ms)[0m CREATE TABLE "mgca_states" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "country_id" integer, "created_at" timestamp, "updated_at" timestamp)
|
25110
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_states_on_country_id" ON "mgca_states" USING btree ("country_id")[0m
|
25111
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "mgca_subdistrict_translations" ("id" serial primary key, "mgca_subdistrict_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying)
|
25112
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_subdistrict_translations_on_locale" ON "mgca_subdistrict_translations" USING btree ("locale")[0m
|
25113
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_subdistrict_translations_on_mgca_subdistrict_id" ON "mgca_subdistrict_translations" USING btree ("mgca_subdistrict_id")
|
25114
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "mgca_subdistricts" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "district_id" integer, "city_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
25115
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_mgca_subdistricts_on_city_id" ON "mgca_subdistricts" USING btree ("city_id")
|
25116
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_subdistricts_on_district_id" ON "mgca_subdistricts" USING btree ("district_id")[0m
|
25117
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "users" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
25118
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
25119
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
25120
|
+
[1m[36m (0.3ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
25121
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161013083634')
|
25122
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150213105831')[0m
|
25123
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150225220219')
|
25124
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20151111133333')[0m
|
25125
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20151118102658')
|
25126
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
25127
|
+
Migrating to AddNamedAddresses (20161013102744)
|
25128
|
+
[1m[35m (0.2ms)[0m BEGIN
|
25129
|
+
[1m[36m (0.8ms)[0m [1mALTER TABLE "mgca_addressibles" ADD "named_address" character varying[0m
|
25130
|
+
[1m[35m (2.0ms)[0m CREATE INDEX "index_mgca_addressibles_on_named_address" ON "mgca_addressibles" ("named_address")
|
25131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20161013102744"]]
|
25132
|
+
[1m[35m (0.4ms)[0m COMMIT
|
25133
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
25134
|
+
[1m[35m (1.9ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25135
|
+
FROM pg_constraint c
|
25136
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25137
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25138
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25139
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25140
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25141
|
+
WHERE c.contype = 'f'
|
25142
|
+
AND t1.relname = 'companies'
|
25143
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25144
|
+
ORDER BY c.conname
|
25145
|
+
|
25146
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25147
|
+
FROM pg_constraint c
|
25148
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25149
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25150
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25151
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25152
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25153
|
+
WHERE c.contype = 'f'
|
25154
|
+
AND t1.relname = 'customers'
|
25155
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25156
|
+
ORDER BY c.conname
|
25157
|
+
[0m
|
25158
|
+
[1m[35m (1.5ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25159
|
+
FROM pg_constraint c
|
25160
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25161
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25162
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25163
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25164
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25165
|
+
WHERE c.contype = 'f'
|
25166
|
+
AND t1.relname = 'mgca_address_translations'
|
25167
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25168
|
+
ORDER BY c.conname
|
25169
|
+
|
25170
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25171
|
+
FROM pg_constraint c
|
25172
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25173
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25174
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25175
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25176
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25177
|
+
WHERE c.contype = 'f'
|
25178
|
+
AND t1.relname = 'mgca_addresses'
|
25179
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25180
|
+
ORDER BY c.conname
|
25181
|
+
[0m
|
25182
|
+
[1m[35m (1.5ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25183
|
+
FROM pg_constraint c
|
25184
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25185
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25186
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25187
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25188
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25189
|
+
WHERE c.contype = 'f'
|
25190
|
+
AND t1.relname = 'mgca_addressibles'
|
25191
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25192
|
+
ORDER BY c.conname
|
25193
|
+
|
25194
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25195
|
+
FROM pg_constraint c
|
25196
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25197
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25198
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25199
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25200
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25201
|
+
WHERE c.contype = 'f'
|
25202
|
+
AND t1.relname = 'mgca_cities'
|
25203
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25204
|
+
ORDER BY c.conname
|
25205
|
+
[0m
|
25206
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25207
|
+
FROM pg_constraint c
|
25208
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25209
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25210
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25211
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25212
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25213
|
+
WHERE c.contype = 'f'
|
25214
|
+
AND t1.relname = 'mgca_city_translations'
|
25215
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25216
|
+
ORDER BY c.conname
|
25217
|
+
|
25218
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25219
|
+
FROM pg_constraint c
|
25220
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25221
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25222
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25223
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25224
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25225
|
+
WHERE c.contype = 'f'
|
25226
|
+
AND t1.relname = 'mgca_countries'
|
25227
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25228
|
+
ORDER BY c.conname
|
25229
|
+
[0m
|
25230
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25231
|
+
FROM pg_constraint c
|
25232
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25233
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25234
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25235
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25236
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25237
|
+
WHERE c.contype = 'f'
|
25238
|
+
AND t1.relname = 'mgca_country_translations'
|
25239
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25240
|
+
ORDER BY c.conname
|
25241
|
+
|
25242
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25243
|
+
FROM pg_constraint c
|
25244
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25245
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25246
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25247
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25248
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25249
|
+
WHERE c.contype = 'f'
|
25250
|
+
AND t1.relname = 'mgca_district_translations'
|
25251
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25252
|
+
ORDER BY c.conname
|
25253
|
+
[0m
|
25254
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25255
|
+
FROM pg_constraint c
|
25256
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25257
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25258
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25259
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25260
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25261
|
+
WHERE c.contype = 'f'
|
25262
|
+
AND t1.relname = 'mgca_districts'
|
25263
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25264
|
+
ORDER BY c.conname
|
25265
|
+
|
25266
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25267
|
+
FROM pg_constraint c
|
25268
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25269
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25270
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25271
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25272
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25273
|
+
WHERE c.contype = 'f'
|
25274
|
+
AND t1.relname = 'mgca_state_translations'
|
25275
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25276
|
+
ORDER BY c.conname
|
25277
|
+
[0m
|
25278
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25279
|
+
FROM pg_constraint c
|
25280
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25281
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25282
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25283
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25284
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25285
|
+
WHERE c.contype = 'f'
|
25286
|
+
AND t1.relname = 'mgca_states'
|
25287
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25288
|
+
ORDER BY c.conname
|
25289
|
+
|
25290
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25291
|
+
FROM pg_constraint c
|
25292
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25293
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25294
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25295
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25296
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25297
|
+
WHERE c.contype = 'f'
|
25298
|
+
AND t1.relname = 'mgca_subdistrict_translations'
|
25299
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25300
|
+
ORDER BY c.conname
|
25301
|
+
[0m
|
25302
|
+
[1m[35m (1.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25303
|
+
FROM pg_constraint c
|
25304
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25305
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25306
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25307
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25308
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25309
|
+
WHERE c.contype = 'f'
|
25310
|
+
AND t1.relname = 'mgca_subdistricts'
|
25311
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25312
|
+
ORDER BY c.conname
|
25313
|
+
|
25314
|
+
[1m[36m (1.4ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
25315
|
+
FROM pg_constraint c
|
25316
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
25317
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
25318
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
25319
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
25320
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
25321
|
+
WHERE c.contype = 'f'
|
25322
|
+
AND t1.relname = 'users'
|
25323
|
+
AND t3.nspname = ANY (current_schemas(false))
|
25324
|
+
ORDER BY c.conname
|
25325
|
+
[0m
|
25326
|
+
[1m[36m (126.8ms)[0m [1mDROP DATABASE IF EXISTS "mgca_addresses_test"[0m
|
25327
|
+
[1m[35m (236.7ms)[0m CREATE DATABASE "mgca_addresses_test" ENCODING = 'unicode'
|
25328
|
+
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
25329
|
+
[1m[35m (4.5ms)[0m CREATE TABLE "companies" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
25330
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "customers" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
25331
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "mgca_address_translations" ("id" serial primary key, "mgca_address_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "street_name" character varying)
|
25332
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_mgca_address_translations_on_locale" ON "mgca_address_translations" USING btree ("locale")[0m
|
25333
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_address_translations_on_mgca_address_id" ON "mgca_address_translations" USING btree ("mgca_address_id")
|
25334
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "mgca_addresses" ("id" serial primary key, "name" character varying, "fetch_address" text, "street_default" character varying, "street_number" character varying, "street_additional" character varying, "zipcode" integer, "longitude" float, "latitude" float, "subdistrict_id" integer, "district_id" integer, "city_id" integer, "state_id" integer, "country_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "status" character varying DEFAULT 'new') [0m
|
25335
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_addresses_on_city_id" ON "mgca_addresses" USING btree ("city_id")
|
25336
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_addresses_on_country_id" ON "mgca_addresses" USING btree ("country_id")[0m
|
25337
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_addresses_on_district_id" ON "mgca_addresses" USING btree ("district_id")
|
25338
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_addresses_on_state_id" ON "mgca_addresses" USING btree ("state_id")[0m
|
25339
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_addresses_on_subdistrict_id" ON "mgca_addresses" USING btree ("subdistrict_id")
|
25340
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "mgca_addressibles" ("id" serial primary key, "default" boolean, "name" character varying, "owner_id" integer, "owner_type" character varying, "address_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "named_address" character varying) [0m
|
25341
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_addressibles_on_address_id" ON "mgca_addressibles" USING btree ("address_id")
|
25342
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_addressibles_on_named_address" ON "mgca_addressibles" USING btree ("named_address")[0m
|
25343
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_addressibles_on_owner_type_and_owner_id" ON "mgca_addressibles" USING btree ("owner_type", "owner_id")
|
25344
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_cities" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "state_id" integer, "country_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
25345
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_cities_on_country_id" ON "mgca_cities" USING btree ("country_id")
|
25346
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_cities_on_state_id" ON "mgca_cities" USING btree ("state_id")[0m
|
25347
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "mgca_city_translations" ("id" serial primary key, "mgca_city_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying)
|
25348
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_mgca_city_translations_on_locale" ON "mgca_city_translations" USING btree ("locale")[0m
|
25349
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_city_translations_on_mgca_city_id" ON "mgca_city_translations" USING btree ("mgca_city_id")
|
25350
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "mgca_countries" ("id" serial primary key, "default_name" character varying, "iso_code" character varying(2), "dial_code" character varying, "fsm_state" character varying DEFAULT 'new', "created_at" timestamp, "updated_at" timestamp) [0m
|
25351
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "mgca_country_translations" ("id" serial primary key, "mgca_country_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying)
|
25352
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_mgca_country_translations_on_locale" ON "mgca_country_translations" USING btree ("locale")[0m
|
25353
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_country_translations_on_mgca_country_id" ON "mgca_country_translations" USING btree ("mgca_country_id")
|
25354
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_district_translations" ("id" serial primary key, "mgca_district_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying) [0m
|
25355
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_district_translations_on_locale" ON "mgca_district_translations" USING btree ("locale")
|
25356
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_district_translations_on_mgca_district_id" ON "mgca_district_translations" USING btree ("mgca_district_id")[0m
|
25357
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "mgca_districts" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "city_id" integer, "created_at" timestamp, "updated_at" timestamp)
|
25358
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_mgca_districts_on_city_id" ON "mgca_districts" USING btree ("city_id")[0m
|
25359
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "mgca_state_translations" ("id" serial primary key, "mgca_state_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying)
|
25360
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_state_translations_on_locale" ON "mgca_state_translations" USING btree ("locale")[0m
|
25361
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_mgca_state_translations_on_mgca_state_id" ON "mgca_state_translations" USING btree ("mgca_state_id")
|
25362
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "mgca_states" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "country_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
|
25363
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_states_on_country_id" ON "mgca_states" USING btree ("country_id")
|
25364
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "mgca_subdistrict_translations" ("id" serial primary key, "mgca_subdistrict_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "name" character varying) [0m
|
25365
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_mgca_subdistrict_translations_on_locale" ON "mgca_subdistrict_translations" USING btree ("locale")
|
25366
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_mgca_subdistrict_translations_on_mgca_subdistrict_id" ON "mgca_subdistrict_translations" USING btree ("mgca_subdistrict_id")[0m
|
25367
|
+
[1m[35m (3.4ms)[0m CREATE TABLE "mgca_subdistricts" ("id" serial primary key, "default_name" character varying, "short_name" character varying, "fsm_state" character varying DEFAULT 'new', "district_id" integer, "city_id" integer, "created_at" timestamp, "updated_at" timestamp)
|
25368
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_mgca_subdistricts_on_city_id" ON "mgca_subdistricts" USING btree ("city_id")[0m
|
25369
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_mgca_subdistricts_on_district_id" ON "mgca_subdistricts" USING btree ("district_id")
|
25370
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "users" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) [0m
|
25371
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
25372
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
25373
|
+
[1m[35m (0.3ms)[0m SELECT version FROM "schema_migrations"
|
25374
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20161013102744')[0m
|
25375
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150213105831')
|
25376
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150225220219')[0m
|
25377
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20151111133333')
|
25378
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20151118102658')[0m
|
25379
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161013083634')
|