uuids 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/README.rdoc +32 -35
- data/Rakefile +13 -27
- data/app/models/uuids/uuid.rb +1 -0
- data/bin/uuids +13 -0
- data/lib/uuids/base/has_uuids.rb +3 -3
- data/lib/uuids/generators/install/migration.rb +62 -0
- data/lib/uuids/generators/install.rb +84 -0
- data/lib/uuids/version.rb +1 -1
- data/lib/uuids.rb +7 -5
- data/spec/dummy/Rakefile +17 -4
- data/spec/dummy/config/database.yml +8 -24
- data/spec/dummy/config/environment.rb +28 -4
- data/spec/dummy/config/initializers/application.rb +37 -0
- data/spec/dummy/config/initializers/dummy.rb +13 -0
- data/spec/dummy/config/initializers/seed_loader.rb +44 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/dummy.rb +16 -0
- data/spec/{dummy/spec/factories → factories}/records.rb +0 -0
- data/spec/{support/initializers → initializers}/database_cleaner.rb +0 -4
- data/spec/{support/initializers/factory_girl_rails.rb → initializers/factory_girl.rb} +1 -1
- data/spec/{support/initializers → initializers}/focus.rb +0 -0
- data/spec/{support/initializers → initializers}/garbage_collection.rb +0 -0
- data/spec/{support/initializers → initializers}/i18n.rb +1 -0
- data/spec/{support/initializers → initializers}/migrations.rb +0 -0
- data/spec/{support/initializers → initializers}/random_order.rb +0 -0
- data/spec/{support/initializers → initializers}/rspec.rb +0 -0
- data/spec/initializers/sandbox.rb +15 -0
- data/spec/spec_helper.rb +9 -9
- data/spec/support/capture.rb +16 -0
- data/spec/support/migrations.rb +16 -0
- data/spec/support/sandbox.rb +44 -0
- data/spec/uuids/cli/install_spec.rb +49 -0
- data/spec/{lib/uuids → uuids/lib}/base_spec.rb +0 -0
- data/spec/uuids/lib/generators/install/migration_spec.rb +41 -0
- data/spec/uuids/lib/generators/install_spec.rb +64 -0
- data/spec/{models/uuids → uuids/models}/uuid_spec.rb +0 -0
- metadata +96 -98
- data/lib/tasks/uuids/install.rake +0 -9
- data/lib/uuids/engine.rb +0 -12
- data/spec/dummy/README.rdoc +0 -28
- data/spec/dummy/app/assets/javascripts/application.js +0 -13
- data/spec/dummy/app/assets/stylesheets/application.css +0 -15
- data/spec/dummy/app/controllers/application_controller.rb +0 -5
- data/spec/dummy/app/helpers/application_helper.rb +0 -2
- data/spec/dummy/app/views/layouts/application.html.erb +0 -13
- data/spec/dummy/bin/bundle +0 -3
- data/spec/dummy/bin/rails +0 -4
- data/spec/dummy/bin/rake +0 -4
- data/spec/dummy/config/application.rb +0 -29
- data/spec/dummy/config/boot.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -37
- data/spec/dummy/config/environments/production.rb +0 -78
- data/spec/dummy/config/environments/test.rb +0 -39
- data/spec/dummy/config/initializers/assets.rb +0 -8
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/cookies_serializer.rb +0 -3
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/spec/dummy/config/initializers/inflections.rb +0 -16
- data/spec/dummy/config/initializers/mime_types.rb +0 -4
- data/spec/dummy/config/initializers/session_store.rb +0 -3
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/spec/dummy/config/locales/en.yml +0 -23
- data/spec/dummy/config/routes.rb +0 -4
- data/spec/dummy/config/secrets.yml +0 -22
- data/spec/dummy/config.ru +0 -4
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +0 -2962
- data/spec/dummy/public/404.html +0 -67
- data/spec/dummy/public/422.html +0 -67
- data/spec/dummy/public/500.html +0 -66
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/support/initializers/coveralls.rb +0 -4
- data/spec/support/initializers/rails.rb +0 -6
data/spec/dummy/log/test.log
DELETED
@@ -1,2962 +0,0 @@
|
|
1
|
-
[1m[36m (5.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
-
[1m[36m (2.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
-
Migrating to CreateUuidsUuids (20141016112506)
|
6
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
-
[1m[35m (0.5ms)[0m CREATE TABLE "uuids_uuids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "value" varchar(36) NOT NULL, "record_id" integer NOT NULL, "record_type" varchar(255) NOT NULL)
|
8
|
-
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_uuids_uuids_on_record_id_and_record_type" ON "uuids_uuids" ("record_id", "record_type")[0m
|
9
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
10
|
-
FROM sqlite_master
|
11
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
12
|
-
UNION ALL
|
13
|
-
SELECT sql
|
14
|
-
FROM sqlite_temp_master
|
15
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
16
|
-
|
17
|
-
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_uuids_uuids_on_value" ON "uuids_uuids" ("value")[0m
|
18
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016112506"]]
|
19
|
-
[1m[36m (2.6ms)[0m [1mcommit transaction[0m
|
20
|
-
Migrating to CreateRecords (20141016113016)
|
21
|
-
[1m[35m (0.1ms)[0m begin transaction
|
22
|
-
[1m[36m (0.7ms)[0m [1mCREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
23
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141016113016"]]
|
24
|
-
[1m[36m (3.7ms)[0m [1mcommit transaction[0m
|
25
|
-
Migrating to CreateCities (20141017081115)
|
26
|
-
[1m[35m (0.1ms)[0m begin transaction
|
27
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "cities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
28
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141017081115"]]
|
29
|
-
[1m[36m (3.2ms)[0m [1mcommit transaction[0m
|
30
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
31
|
-
[1m[36m (0.2ms)[0m [1m SELECT sql
|
32
|
-
FROM sqlite_master
|
33
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
34
|
-
UNION ALL
|
35
|
-
SELECT sql
|
36
|
-
FROM sqlite_temp_master
|
37
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
38
|
-
[0m
|
39
|
-
[1m[35m (0.2ms)[0m SELECT sql
|
40
|
-
FROM sqlite_master
|
41
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
42
|
-
UNION ALL
|
43
|
-
SELECT sql
|
44
|
-
FROM sqlite_temp_master
|
45
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
46
|
-
|
47
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
48
|
-
[1m[35m (3.6ms)[0m DELETE FROM "uuids_uuids";
|
49
|
-
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
50
|
-
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
51
|
-
[1m[36m (3.3ms)[0m [1mDELETE FROM "records";[0m
|
52
|
-
[1m[35m (0.4ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
53
|
-
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
54
|
-
[1m[35m (3.4ms)[0m DELETE FROM "cities";
|
55
|
-
[1m[36m (0.4ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
56
|
-
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
57
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
58
|
-
[1m[35m (0.1ms)[0m commit transaction
|
59
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
60
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
61
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.142980"], ["updated_at", "2014-10-25 08:29:07.142980"]]
|
62
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
63
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
64
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "97dd9e10-0e2a-4cd2-afaa-3db2cc495f15"]]
|
65
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
66
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
67
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
68
|
-
[1m[35m (0.0ms)[0m commit transaction
|
69
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
70
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
71
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.155798"], ["updated_at", "2014-10-25 08:29:07.155798"]]
|
72
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
73
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
74
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "16e20b8e-ab04-4edc-85e6-9e113c7f297d"]]
|
75
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
76
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
77
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
78
|
-
[1m[35m (0.0ms)[0m begin transaction
|
79
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
80
|
-
[1m[35m (0.0ms)[0m begin transaction
|
81
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
82
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:29:07.160971"], ["updated_at", "2014-10-25 08:29:07.160971"]]
|
83
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
84
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
85
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
86
|
-
[1m[35m (0.0ms)[0m commit transaction
|
87
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
88
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
89
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.165228"], ["updated_at", "2014-10-25 08:29:07.165228"]]
|
90
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
91
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
92
|
-
[1m[35m (0.0ms)[0m begin transaction
|
93
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
94
|
-
[1m[35m (0.0ms)[0m begin transaction
|
95
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
96
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:29:07.172882"], ["updated_at", "2014-10-25 08:29:07.172882"]]
|
97
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
98
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
99
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
100
|
-
[1m[35m (0.0ms)[0m commit transaction
|
101
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
102
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
103
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.175646"], ["updated_at", "2014-10-25 08:29:07.175646"]]
|
104
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
105
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
106
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "efc54b7a-06b8-40f6-83a9-06f2c36fe015"]]
|
107
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
108
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
109
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110
|
-
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
111
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
113
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
114
|
-
[1m[35m (0.0ms)[0m begin transaction
|
115
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
116
|
-
[1m[35m (0.0ms)[0m begin transaction
|
117
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
118
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:29:07.183489"], ["updated_at", "2014-10-25 08:29:07.183489"]]
|
119
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
120
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
121
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "6775face-8fc7-480e-9acd-2410ab9b966b"]]
|
122
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
123
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
124
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
125
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
126
|
-
[1m[35m (0.0ms)[0m commit transaction
|
127
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
128
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
129
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.187549"], ["updated_at", "2014-10-25 08:29:07.187549"]]
|
130
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
131
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
132
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "01d33b8c-c887-49c9-b10d-ce972edfeaa4"]]
|
133
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
134
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
135
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
136
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
137
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
138
|
-
[1m[35m (0.0ms)[0m commit transaction
|
139
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
140
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
141
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.192430"], ["updated_at", "2014-10-25 08:29:07.192430"]]
|
142
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
143
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
144
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "1e1482fc-d4f9-4fae-ac79-484785d568c3"]]
|
145
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
146
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
147
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
148
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
149
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
150
|
-
[1m[35m (0.0ms)[0m commit transaction
|
151
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
152
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
153
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.198522"], ["updated_at", "2014-10-25 08:29:07.198522"]]
|
154
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
155
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "9754cdeb-5206-4865-9b29-1cbad1174c5f"]]
|
156
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
157
|
-
[1m[36mCity Load (0.2ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" = '9754cdeb-5206-4865-9b29-1cbad1174c5f' ORDER BY "cities"."id" ASC LIMIT 1[0m
|
158
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
159
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
160
|
-
[1m[35m (0.0ms)[0m commit transaction
|
161
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
162
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
163
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.217153"], ["updated_at", "2014-10-25 08:29:07.217153"]]
|
164
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
165
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "c4a6df59-510c-40b4-a327-e2c3a1b9e368"]]
|
166
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
167
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
168
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
169
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
170
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
171
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
172
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
173
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
174
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
175
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
176
|
-
[1m[35m (0.0ms)[0m begin transaction
|
177
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
178
|
-
[1m[35m (0.0ms)[0m begin transaction
|
179
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
180
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:29:07.225878"], ["updated_at", "2014-10-25 08:29:07.225878"]]
|
181
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
182
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "9141bf4b-e2c4-4365-acd1-51d2a9198925"]]
|
183
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
184
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
185
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
186
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
187
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
188
|
-
[1m[35m (0.0ms)[0m begin transaction
|
189
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
190
|
-
[1m[35m (0.0ms)[0m begin transaction
|
191
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
192
|
-
[1m[35m (0.0ms)[0m begin transaction
|
193
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
194
|
-
[1m[35m (0.0ms)[0m begin transaction
|
195
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
196
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:29:07.233037"], ["updated_at", "2014-10-25 08:29:07.233037"]]
|
197
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
198
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "1ed7bc48-fb91-4d89-b978-b462f461327a"]]
|
199
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
200
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
201
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
202
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
203
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
204
|
-
[1m[35m (0.0ms)[0m begin transaction
|
205
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
206
|
-
[1m[35m (0.0ms)[0m begin transaction
|
207
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
208
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:29:07.241682"], ["updated_at", "2014-10-25 08:29:07.241682"]]
|
209
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
210
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "a85c75e4-f630-405a-b23a-1ef31123683f"]]
|
211
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
212
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "23c5751e-73a2-46a3-affe-d2587a52ecf1"]]
|
213
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
214
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
215
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
216
|
-
[1m[35m (0.0ms)[0m commit transaction
|
217
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
218
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
219
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:29:07.247249"], ["updated_at", "2014-10-25 08:29:07.247249"]]
|
220
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
221
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "3c2932c7-6ff7-4dae-89dd-ea7d76e8b151"]]
|
222
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
223
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
224
|
-
[1m[35m (0.0ms)[0m begin transaction
|
225
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
226
|
-
[1m[35m (0.0ms)[0m begin transaction
|
227
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
228
|
-
[1m[35m (0.0ms)[0m begin transaction
|
229
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
230
|
-
[1m[35m (0.0ms)[0m begin transaction
|
231
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
232
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
233
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
234
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
235
|
-
FROM sqlite_master
|
236
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
237
|
-
UNION ALL
|
238
|
-
SELECT sql
|
239
|
-
FROM sqlite_temp_master
|
240
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
241
|
-
[0m
|
242
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
243
|
-
FROM sqlite_master
|
244
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
245
|
-
UNION ALL
|
246
|
-
SELECT sql
|
247
|
-
FROM sqlite_temp_master
|
248
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
249
|
-
|
250
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
251
|
-
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
252
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
253
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
254
|
-
[1m[36m (2.2ms)[0m [1mDELETE FROM "records";[0m
|
255
|
-
[1m[35m (0.4ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
256
|
-
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
257
|
-
[1m[35m (3.0ms)[0m DELETE FROM "cities";
|
258
|
-
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
259
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
260
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
261
|
-
[1m[35m (0.1ms)[0m commit transaction
|
262
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
263
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
264
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:34:10.750233"], ["updated_at", "2014-10-25 08:34:10.750233"]]
|
265
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
266
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
267
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "7e9511d0-2e84-46fd-a001-53bdd83a04f2"]]
|
268
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
269
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
270
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
271
|
-
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
272
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
273
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
274
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
275
|
-
[1m[35m (0.0ms)[0m begin transaction
|
276
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
277
|
-
[1m[35m (0.0ms)[0m begin transaction
|
278
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.767377"], ["updated_at", "2014-10-25 08:34:10.767377"]]
|
280
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "25836440-d9e0-41db-b9fe-457710101bbe"]]
|
283
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
284
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
285
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
286
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
287
|
-
[1m[35m (0.0ms)[0m commit transaction
|
288
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
289
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
290
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:34:10.771051"], ["updated_at", "2014-10-25 08:34:10.771051"]]
|
291
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
292
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
293
|
-
[1m[35m (0.0ms)[0m begin transaction
|
294
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
295
|
-
[1m[35m (0.0ms)[0m begin transaction
|
296
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.777387"], ["updated_at", "2014-10-25 08:34:10.777387"]]
|
298
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
299
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
300
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
301
|
-
[1m[35m (0.0ms)[0m commit transaction
|
302
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
303
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
304
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:34:10.780036"], ["updated_at", "2014-10-25 08:34:10.780036"]]
|
305
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
306
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
307
|
-
[1m[35m (0.0ms)[0m begin transaction
|
308
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
309
|
-
[1m[35m (0.0ms)[0m begin transaction
|
310
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
311
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.782504"], ["updated_at", "2014-10-25 08:34:10.782504"]]
|
312
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
313
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
314
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "89a00ac6-cf45-42a9-a9e2-ec8a99f7f4b3"]]
|
315
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
316
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
317
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
318
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
319
|
-
[1m[35m (0.0ms)[0m begin transaction
|
320
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
321
|
-
[1m[35m (0.0ms)[0m begin transaction
|
322
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
323
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.787231"], ["updated_at", "2014-10-25 08:34:10.787231"]]
|
324
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
325
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
326
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "d5af97d6-3b58-456f-a392-b86b46c88efd"]]
|
327
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
328
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
329
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
330
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
331
|
-
[1m[35m (0.0ms)[0m begin transaction
|
332
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
333
|
-
[1m[35m (0.0ms)[0m begin transaction
|
334
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
335
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.791041"], ["updated_at", "2014-10-25 08:34:10.791041"]]
|
336
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
337
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
338
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "857521f7-15a7-40ad-bd7f-4c2b43257840"]]
|
339
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
340
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
341
|
-
[1m[35m (0.0ms)[0m begin transaction
|
342
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
343
|
-
[1m[35m (0.0ms)[0m begin transaction
|
344
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
345
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.794475"], ["updated_at", "2014-10-25 08:34:10.794475"]]
|
346
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "26d5d15d-aaf6-41b3-a091-29311323cd27"]]
|
349
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
350
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
351
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
352
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
353
|
-
[1m[35m (0.0ms)[0m commit transaction
|
354
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
355
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
356
|
-
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
357
|
-
[1m[35m (0.4ms)[0m commit transaction
|
358
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
359
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
360
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:34:10.831024"], ["updated_at", "2014-10-25 08:34:10.831024"]]
|
361
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
362
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "92783e7d-a681-4571-978f-da05e5f215a7"]]
|
363
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
364
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
365
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
366
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
367
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
368
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
369
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
370
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
371
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
372
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
373
|
-
[1m[35m (0.0ms)[0m begin transaction
|
374
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
375
|
-
[1m[35m (0.0ms)[0m begin transaction
|
376
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
377
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.843516"], ["updated_at", "2014-10-25 08:34:10.843516"]]
|
378
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
379
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "a571c433-8856-4e14-8016-176be58626a1"]]
|
380
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
381
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" = 'a571c433-8856-4e14-8016-176be58626a1' ORDER BY "cities"."id" ASC LIMIT 1
|
382
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
383
|
-
[1m[35m (0.0ms)[0m begin transaction
|
384
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
385
|
-
[1m[35m (0.0ms)[0m begin transaction
|
386
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
387
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.855726"], ["updated_at", "2014-10-25 08:34:10.855726"]]
|
388
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
389
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "0a766423-b821-4262-90cc-0d955dc5e7fe"]]
|
390
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
391
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "9d3cd6b5-9a0b-4cd4-8225-8575b380e2ff"]]
|
392
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
393
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
394
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
395
|
-
[1m[35m (0.0ms)[0m commit transaction
|
396
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
397
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
398
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:34:10.861027"], ["updated_at", "2014-10-25 08:34:10.861027"]]
|
399
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
400
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "40e75672-cd58-442a-a518-7d03f88b6d0c"]]
|
401
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
402
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
403
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
404
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
405
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
406
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
407
|
-
[1m[35m (0.0ms)[0m commit transaction
|
408
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
409
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
410
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:34:10.869468"], ["updated_at", "2014-10-25 08:34:10.869468"]]
|
411
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
412
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "1392fc46-e303-4d22-926f-c11ad6ef1fcf"]]
|
413
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
414
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
415
|
-
[1m[35m (0.0ms)[0m begin transaction
|
416
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
417
|
-
[1m[35m (0.0ms)[0m begin transaction
|
418
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
419
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:34:10.875639"], ["updated_at", "2014-10-25 08:34:10.875639"]]
|
420
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
421
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "31c00165-6e4b-4b85-8e5b-50757cacb6c0"]]
|
422
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
423
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
424
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
425
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
426
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
427
|
-
[1m[35m (0.0ms)[0m begin transaction
|
428
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
429
|
-
[1m[35m (0.0ms)[0m begin transaction
|
430
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
431
|
-
[1m[35m (0.0ms)[0m begin transaction
|
432
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
433
|
-
[1m[35m (0.0ms)[0m begin transaction
|
434
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
435
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
436
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
437
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
438
|
-
FROM sqlite_master
|
439
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
440
|
-
UNION ALL
|
441
|
-
SELECT sql
|
442
|
-
FROM sqlite_temp_master
|
443
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
444
|
-
[0m
|
445
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
446
|
-
FROM sqlite_master
|
447
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
448
|
-
UNION ALL
|
449
|
-
SELECT sql
|
450
|
-
FROM sqlite_temp_master
|
451
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
452
|
-
|
453
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
454
|
-
[1m[35m (4.6ms)[0m DELETE FROM "uuids_uuids";
|
455
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
456
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
457
|
-
[1m[36m (2.7ms)[0m [1mDELETE FROM "records";[0m
|
458
|
-
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
459
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
460
|
-
[1m[35m (2.6ms)[0m DELETE FROM "cities";
|
461
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
462
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
463
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
464
|
-
[1m[35m (0.0ms)[0m commit transaction
|
465
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
466
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
467
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
468
|
-
[1m[35m (0.1ms)[0m commit transaction
|
469
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
470
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
471
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
472
|
-
[1m[35m (0.0ms)[0m commit transaction
|
473
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
474
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
475
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
476
|
-
[1m[35m (0.0ms)[0m commit transaction
|
477
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
478
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
479
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.170691"], ["updated_at", "2014-10-25 08:40:59.170691"]]
|
480
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
481
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "eb1ab063-bc24-4609-be89-a3dbc42ac1ea"]]
|
482
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
483
|
-
[1m[36mCity Load (0.2ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" = 'eb1ab063-bc24-4609-be89-a3dbc42ac1ea' ORDER BY "cities"."id" ASC LIMIT 1[0m
|
484
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
485
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
486
|
-
[1m[35m (0.0ms)[0m commit transaction
|
487
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
488
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
489
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.190715"], ["updated_at", "2014-10-25 08:40:59.190715"]]
|
490
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
491
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "8a3e4e57-bd12-40a0-abfd-38b4992483e8"]]
|
492
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
493
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
494
|
-
[1m[35m (0.0ms)[0m begin transaction
|
495
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
496
|
-
[1m[35m (0.0ms)[0m begin transaction
|
497
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
498
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:40:59.196969"], ["updated_at", "2014-10-25 08:40:59.196969"]]
|
499
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
500
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "80757f69-4b7f-4985-8d0c-3556dfba4ede"]]
|
501
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
502
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "11c7c8ef-6362-4805-8108-a605fc74206f"]]
|
503
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
504
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
505
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
506
|
-
[1m[35m (0.0ms)[0m commit transaction
|
507
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
508
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
509
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.203244"], ["updated_at", "2014-10-25 08:40:59.203244"]]
|
510
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
511
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "a2a747e8-ef30-47a5-93a8-9c02fe189526"]]
|
512
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
513
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
514
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
515
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
516
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
517
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
518
|
-
[1m[35m (0.0ms)[0m commit transaction
|
519
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
520
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
521
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.208656"], ["updated_at", "2014-10-25 08:40:59.208656"]]
|
522
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
523
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "776e3e50-8569-45f3-b045-1170a19d2421"]]
|
524
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
525
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
526
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
527
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
528
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
529
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
530
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
531
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
532
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
533
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
534
|
-
[1m[35m (0.7ms)[0m begin transaction
|
535
|
-
[1m[36m (0.4ms)[0m [1mcommit transaction[0m
|
536
|
-
[1m[35m (0.0ms)[0m begin transaction
|
537
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
538
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:40:59.243020"], ["updated_at", "2014-10-25 08:40:59.243020"]]
|
539
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
540
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "81c02606-672b-4dd8-a77a-a93125407d5f"]]
|
541
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
542
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
543
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
544
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
545
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
546
|
-
[1m[35m (0.0ms)[0m begin transaction
|
547
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
548
|
-
[1m[35m (0.0ms)[0m begin transaction
|
549
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
550
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:40:59.253692"], ["updated_at", "2014-10-25 08:40:59.253692"]]
|
551
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
552
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
553
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
554
|
-
[1m[35m (0.0ms)[0m commit transaction
|
555
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
556
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
557
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.258017"], ["updated_at", "2014-10-25 08:40:59.258017"]]
|
558
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
559
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
560
|
-
[1m[35m (0.0ms)[0m begin transaction
|
561
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
562
|
-
[1m[35m (0.0ms)[0m begin transaction
|
563
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
564
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:40:59.261508"], ["updated_at", "2014-10-25 08:40:59.261508"]]
|
565
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
566
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
567
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
568
|
-
[1m[35m (0.0ms)[0m commit transaction
|
569
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
570
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
571
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.264434"], ["updated_at", "2014-10-25 08:40:59.264434"]]
|
572
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
573
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
574
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "48f53056-c998-4ffc-9339-db443f878299"]]
|
575
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
576
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
577
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
578
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
579
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
580
|
-
[1m[35m (0.0ms)[0m commit transaction
|
581
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
582
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
583
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.268440"], ["updated_at", "2014-10-25 08:40:59.268440"]]
|
584
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
585
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
586
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "2805490c-1f4e-4540-bef7-22659956dc2b"]]
|
587
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
588
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
589
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
590
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
591
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
592
|
-
[1m[35m (0.0ms)[0m commit transaction
|
593
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
594
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
595
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.272408"], ["updated_at", "2014-10-25 08:40:59.272408"]]
|
596
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
597
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
598
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "901b9264-f459-4ea1-a480-da9952156f78"]]
|
599
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
600
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
601
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
602
|
-
[1m[35m (0.0ms)[0m begin transaction
|
603
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
604
|
-
[1m[35m (0.0ms)[0m begin transaction
|
605
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
606
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:40:59.276108"], ["updated_at", "2014-10-25 08:40:59.276108"]]
|
607
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
608
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
609
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "28bd9257-c1fc-4ef6-85a3-27626b6d5685"]]
|
610
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
611
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
612
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
613
|
-
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
614
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
615
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
616
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
617
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
618
|
-
[1m[35m (0.0ms)[0m commit transaction
|
619
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
620
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
621
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 08:40:59.280855"], ["updated_at", "2014-10-25 08:40:59.280855"]]
|
622
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
623
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
624
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "8dbf5fbf-b121-483c-babe-d981d8912f58"]]
|
625
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
626
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
627
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
628
|
-
[1m[35m (0.0ms)[0m begin transaction
|
629
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
630
|
-
[1m[35m (0.0ms)[0m begin transaction
|
631
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
632
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 08:40:59.284205"], ["updated_at", "2014-10-25 08:40:59.284205"]]
|
633
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
634
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
635
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "cfaf5c4e-398b-423c-923a-fe9ac8cbb83e"]]
|
636
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
637
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
638
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
639
|
-
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
640
|
-
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
641
|
-
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
642
|
-
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
643
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
644
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
645
|
-
[1m[35m (2.5ms)[0m DELETE FROM "cities";
|
646
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
647
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
648
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
649
|
-
[1m[35m (0.0ms)[0m commit transaction
|
650
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
651
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
652
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
653
|
-
[1m[35m (0.0ms)[0m commit transaction
|
654
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
655
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
656
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
657
|
-
[1m[35m (0.0ms)[0m commit transaction
|
658
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
659
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
660
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
661
|
-
[1m[35m (0.0ms)[0m commit transaction
|
662
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
663
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
664
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:41:13.887989"], ["updated_at", "2014-10-25 21:41:13.887989"]]
|
665
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
666
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "0d0718df-ca14-4b1c-bf3b-2e04bcae1da9"]]
|
667
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
668
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
669
|
-
[1m[35m (0.0ms)[0m begin transaction
|
670
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
671
|
-
[1m[35m (0.0ms)[0m begin transaction
|
672
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
673
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:13.901039"], ["updated_at", "2014-10-25 21:41:13.901039"]]
|
674
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
675
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "7d16786f-7b85-415e-92e1-4f9d25845aa3"]]
|
676
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
677
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "1c1d7859-bbc4-4db9-bd1f-babfb8582a78"]]
|
678
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
679
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
680
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
681
|
-
[1m[35m (0.0ms)[0m commit transaction
|
682
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
683
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
684
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:41:13.906783"], ["updated_at", "2014-10-25 21:41:13.906783"]]
|
685
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
686
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "93da6d26-970b-4bd9-b569-b5bdd1e973c3"]]
|
687
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
688
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
689
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
690
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
691
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
692
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
693
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
694
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
695
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
696
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
697
|
-
[1m[35m (0.8ms)[0m begin transaction
|
698
|
-
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
699
|
-
[1m[35m (0.1ms)[0m begin transaction
|
700
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
701
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:13.944524"], ["updated_at", "2014-10-25 21:41:13.944524"]]
|
702
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
703
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "791b0e1e-9ee6-4698-8c4e-62e1094d6b87"]]
|
704
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
705
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" = '791b0e1e-9ee6-4698-8c4e-62e1094d6b87' ORDER BY "cities"."id" ASC LIMIT 1
|
706
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
707
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
708
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "8c9d27fb-877f-4671-a27d-9676688d8308"]]
|
709
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
710
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
711
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
712
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
713
|
-
[1m[35m (0.0ms)[0m begin transaction
|
714
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
715
|
-
[1m[35m (0.0ms)[0m begin transaction
|
716
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
717
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:13.959530"], ["updated_at", "2014-10-25 21:41:13.959530"]]
|
718
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
719
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "34c6bfd2-9495-4eb2-960c-5b382a47b594"]]
|
720
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
721
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
722
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
723
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
724
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
725
|
-
[1m[35m (0.0ms)[0m begin transaction
|
726
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
727
|
-
[1m[35m (0.0ms)[0m begin transaction
|
728
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
729
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:13.964880"], ["updated_at", "2014-10-25 21:41:13.964880"]]
|
730
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
731
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "ef7b2c1b-9fe7-4d6b-ac45-35490fdc1aef"]]
|
732
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
733
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
734
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
735
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
736
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
737
|
-
[1m[35m (0.0ms)[0m begin transaction
|
738
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
739
|
-
[1m[35m (0.0ms)[0m begin transaction
|
740
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
741
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:13.975596"], ["updated_at", "2014-10-25 21:41:13.975596"]]
|
742
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
743
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
744
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
745
|
-
[1m[35m (0.0ms)[0m commit transaction
|
746
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
747
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
748
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:41:13.980223"], ["updated_at", "2014-10-25 21:41:13.980223"]]
|
749
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
750
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
751
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "6fd6d560-42c6-4355-b62d-614d10d41c72"]]
|
752
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
753
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
754
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
755
|
-
[1m[35m (0.0ms)[0m begin transaction
|
756
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
757
|
-
[1m[35m (0.0ms)[0m begin transaction
|
758
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
759
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:13.984165"], ["updated_at", "2014-10-25 21:41:13.984165"]]
|
760
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
761
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
762
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "6577d3b1-b5d0-485e-a59d-aa09ab495f56"]]
|
763
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
764
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
765
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
766
|
-
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
767
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
768
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
769
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
770
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
771
|
-
[1m[35m (0.0ms)[0m commit transaction
|
772
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
773
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
774
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:41:13.989277"], ["updated_at", "2014-10-25 21:41:13.989277"]]
|
775
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
776
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
777
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "3a4c23de-7f16-45c1-9ace-d375c5c1ceb2"]]
|
778
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
779
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
780
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
781
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
782
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
783
|
-
[1m[35m (0.0ms)[0m commit transaction
|
784
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
785
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
786
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:41:13.993529"], ["updated_at", "2014-10-25 21:41:13.993529"]]
|
787
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
788
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
789
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "bcbc9b62-f928-44b7-961a-1e602549e54c"]]
|
790
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
791
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
792
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
793
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
794
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
795
|
-
[1m[35m (0.0ms)[0m commit transaction
|
796
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
797
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
798
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:41:13.997409"], ["updated_at", "2014-10-25 21:41:13.997409"]]
|
799
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
800
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
801
|
-
[1m[35m (0.0ms)[0m begin transaction
|
802
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
803
|
-
[1m[35m (0.0ms)[0m begin transaction
|
804
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
805
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:14.000186"], ["updated_at", "2014-10-25 21:41:14.000186"]]
|
806
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
807
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
808
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
809
|
-
[1m[35m (0.0ms)[0m commit transaction
|
810
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
811
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
812
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:41:14.002849"], ["updated_at", "2014-10-25 21:41:14.002849"]]
|
813
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
814
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
815
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "cd6141e5-dac4-4fa1-bc44-dca0808a20d9"]]
|
816
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
817
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
818
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
819
|
-
[1m[35m (0.0ms)[0m begin transaction
|
820
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
821
|
-
[1m[35m (0.0ms)[0m begin transaction
|
822
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
823
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:41:14.006840"], ["updated_at", "2014-10-25 21:41:14.006840"]]
|
824
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
825
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
826
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "9b9e878b-6aea-4173-87d2-9538f1e9ff2c"]]
|
827
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
828
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
829
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
830
|
-
[1m[35m (5.7ms)[0m DELETE FROM "uuids_uuids";
|
831
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
832
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
833
|
-
[1m[36m (3.2ms)[0m [1mDELETE FROM "records";[0m
|
834
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
835
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
836
|
-
[1m[35m (2.6ms)[0m DELETE FROM "cities";
|
837
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
838
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
839
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
840
|
-
[1m[35m (0.0ms)[0m commit transaction
|
841
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
842
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
843
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
844
|
-
[1m[35m (0.1ms)[0m commit transaction
|
845
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
846
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
847
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
848
|
-
[1m[35m (0.1ms)[0m commit transaction
|
849
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
850
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
851
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.503627"], ["updated_at", "2014-10-25 21:42:13.503627"]]
|
852
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
853
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "1eb6ef24-93fa-4885-a92c-9525d0c0316b"]]
|
854
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
855
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
856
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
857
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
858
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
859
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
860
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
861
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
862
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
863
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
864
|
-
[1m[35m (0.0ms)[0m begin transaction
|
865
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
866
|
-
[1m[35m (0.0ms)[0m begin transaction
|
867
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
868
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:13.533993"], ["updated_at", "2014-10-25 21:42:13.533993"]]
|
869
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
870
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "4580266f-16f3-40a5-96a3-90fac75040b2"]]
|
871
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
872
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
873
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
874
|
-
[1m[35m (0.0ms)[0m commit transaction
|
875
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
876
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
877
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.539262"], ["updated_at", "2014-10-25 21:42:13.539262"]]
|
878
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
879
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "dce559a4-661d-4019-b602-98e38d87fb45"]]
|
880
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
881
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
882
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
883
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
884
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
885
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
886
|
-
[1m[35m (0.0ms)[0m commit transaction
|
887
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
888
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
889
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.547940"], ["updated_at", "2014-10-25 21:42:13.547940"]]
|
890
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
891
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "2c394068-684d-41d1-873f-001c69c9379c"]]
|
892
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
893
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
894
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
895
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
896
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
897
|
-
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
898
|
-
[1m[35m (0.6ms)[0m commit transaction
|
899
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
900
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
901
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
902
|
-
[1m[35m (0.0ms)[0m commit transaction
|
903
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
904
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
905
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.583731"], ["updated_at", "2014-10-25 21:42:13.583731"]]
|
906
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
907
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "e252ebb6-bc7a-4664-9024-f1998bf704e4"]]
|
908
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
909
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "16b42d7f-711c-4e8c-876a-f153346ee491"]]
|
910
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
911
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
912
|
-
[1m[35m (0.0ms)[0m begin transaction
|
913
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
914
|
-
[1m[35m (0.0ms)[0m begin transaction
|
915
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
916
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:13.589520"], ["updated_at", "2014-10-25 21:42:13.589520"]]
|
917
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
918
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "7ae5aad5-fd7c-435b-855b-4543fcf4fdc8"]]
|
919
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
920
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
921
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
922
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "90f3efd0-1563-4130-a5c2-ccb22ee415f3"]]
|
923
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
924
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
925
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
926
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
927
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
928
|
-
[1m[35m (0.0ms)[0m commit transaction
|
929
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
930
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
931
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.598734"], ["updated_at", "2014-10-25 21:42:13.598734"]]
|
932
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
933
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
934
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "9fa01753-a71c-4937-9332-b5edcf4fe2ff"]]
|
935
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
936
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
937
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
938
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
939
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
940
|
-
[1m[35m (0.0ms)[0m commit transaction
|
941
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
942
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
943
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.604800"], ["updated_at", "2014-10-25 21:42:13.604800"]]
|
944
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
945
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
946
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "36f83caa-4c30-4f4f-9573-797692455ad5"]]
|
947
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
948
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
949
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
950
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
951
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
952
|
-
[1m[35m (0.0ms)[0m commit transaction
|
953
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
954
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
955
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.609383"], ["updated_at", "2014-10-25 21:42:13.609383"]]
|
956
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
957
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
958
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "02adf8dc-582e-496b-8417-eac0460738e5"]]
|
959
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
960
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
961
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
962
|
-
[1m[35m (0.0ms)[0m begin transaction
|
963
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
964
|
-
[1m[35m (0.0ms)[0m begin transaction
|
965
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
966
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:13.613205"], ["updated_at", "2014-10-25 21:42:13.613205"]]
|
967
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
968
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
969
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "2abc7c8c-2298-456c-a343-30aef917bacc"]]
|
970
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
971
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
972
|
-
[1m[35m (0.0ms)[0m begin transaction
|
973
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
974
|
-
[1m[35m (0.0ms)[0m begin transaction
|
975
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
976
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:13.616567"], ["updated_at", "2014-10-25 21:42:13.616567"]]
|
977
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
978
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
979
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
980
|
-
[1m[35m (0.0ms)[0m commit transaction
|
981
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
982
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
983
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.619001"], ["updated_at", "2014-10-25 21:42:13.619001"]]
|
984
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
985
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
986
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "2f2765d7-93de-4cd8-a4c6-308b523f4ef6"]]
|
987
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
988
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
989
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
990
|
-
[1m[35m (0.0ms)[0m begin transaction
|
991
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
992
|
-
[1m[35m (0.0ms)[0m begin transaction
|
993
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
994
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:13.622761"], ["updated_at", "2014-10-25 21:42:13.622761"]]
|
995
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
996
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
997
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "851a3c8c-400f-4032-b4c6-9b7fd9a0c614"]]
|
998
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
999
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
1000
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1001
|
-
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
1002
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1003
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
1004
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1005
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1006
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1007
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1008
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1009
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:13.627632"], ["updated_at", "2014-10-25 21:42:13.627632"]]
|
1010
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1011
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1012
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1013
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1014
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1015
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1016
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:13.630285"], ["updated_at", "2014-10-25 21:42:13.630285"]]
|
1017
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1018
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1019
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1020
|
-
[1m[35m (4.5ms)[0m DELETE FROM "uuids_uuids";
|
1021
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1022
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1023
|
-
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
1024
|
-
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1025
|
-
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1026
|
-
[1m[35m (2.8ms)[0m DELETE FROM "cities";
|
1027
|
-
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1028
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1029
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1030
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1031
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1032
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1033
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1034
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1035
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1036
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1037
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1038
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1039
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1040
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1041
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:37.479332"], ["updated_at", "2014-10-25 21:42:37.479332"]]
|
1042
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1043
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "ca3d9d23-b231-492f-9f15-e239dbd8b930"]]
|
1044
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1045
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1046
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1047
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1048
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1049
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1050
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.500401"], ["updated_at", "2014-10-25 21:42:37.500401"]]
|
1051
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1052
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "c07e2f3a-4626-46a1-b018-73afca24c899"]]
|
1053
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1054
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1055
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1056
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "581c83c9-72f4-4b43-9cf7-61cde30d3613"]]
|
1057
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1058
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1059
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1060
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1061
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1062
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1063
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1064
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1065
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1066
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1067
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1068
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1069
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:37.512105"], ["updated_at", "2014-10-25 21:42:37.512105"]]
|
1070
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1071
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "878924fe-7ae6-473c-adf8-abcb93a55ca5"]]
|
1072
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1073
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1074
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1075
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1076
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1077
|
-
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
1078
|
-
[1m[35m (0.3ms)[0m commit transaction
|
1079
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1080
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1081
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:37.548816"], ["updated_at", "2014-10-25 21:42:37.548816"]]
|
1082
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1083
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "aa898ea9-be39-4198-ae01-0ff9e4364c8e"]]
|
1084
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1085
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1086
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1087
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1088
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1089
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1090
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1091
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
1092
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1093
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1094
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1095
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1096
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1097
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1098
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.558260"], ["updated_at", "2014-10-25 21:42:37.558260"]]
|
1099
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1100
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "38e0e288-958a-4452-9f60-0bde6b21b684"]]
|
1101
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1102
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
1103
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1104
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
1105
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1106
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1107
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1108
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1109
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1110
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.565631"], ["updated_at", "2014-10-25 21:42:37.565631"]]
|
1111
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1112
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "1a269f86-9760-4fb8-a065-a27c7052307d"]]
|
1113
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1114
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "2d543c59-6ae7-4b5b-adb9-e00d93979b22"]]
|
1115
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1116
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1117
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1118
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1119
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1120
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1121
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:37.572202"], ["updated_at", "2014-10-25 21:42:37.572202"]]
|
1122
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1123
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1124
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1125
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1126
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1127
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1128
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.576562"], ["updated_at", "2014-10-25 21:42:37.576562"]]
|
1129
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1130
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1131
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1132
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1133
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1134
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1135
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:37.579464"], ["updated_at", "2014-10-25 21:42:37.579464"]]
|
1136
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1137
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1138
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1139
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1140
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1141
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1142
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.582125"], ["updated_at", "2014-10-25 21:42:37.582125"]]
|
1143
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1144
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1145
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "05a5f782-0e5c-4141-b925-f33e78378735"]]
|
1146
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1147
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1148
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1149
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1150
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1151
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1152
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1153
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1154
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.586631"], ["updated_at", "2014-10-25 21:42:37.586631"]]
|
1155
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1156
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1157
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "27f0354b-5318-4e64-ba12-5d0fb33b1cc3"]]
|
1158
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1159
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1160
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1161
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1162
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1163
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1164
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1165
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1166
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.590552"], ["updated_at", "2014-10-25 21:42:37.590552"]]
|
1167
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1168
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1169
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "4682b2ce-5bdb-4e00-823a-2e31210294b5"]]
|
1170
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1171
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
1172
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1173
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1174
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1175
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1176
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1177
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:37.594037"], ["updated_at", "2014-10-25 21:42:37.594037"]]
|
1178
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1179
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1180
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "11e43038-d45b-4c27-9a60-8c5be61780e2"]]
|
1181
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1182
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1183
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1184
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1185
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1186
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1187
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:42:37.597419"], ["updated_at", "2014-10-25 21:42:37.597419"]]
|
1188
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1189
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1190
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "8b381f72-4130-499c-8ee2-4085394c3b26"]]
|
1191
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1192
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
1193
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1194
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1195
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1196
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1197
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1198
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:42:37.601057"], ["updated_at", "2014-10-25 21:42:37.601057"]]
|
1199
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1200
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1201
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "dc9431a4-cdb3-4b71-b2b6-94ef47f29db8"]]
|
1202
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1203
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
1204
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1205
|
-
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
1206
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1207
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
1208
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1209
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1210
|
-
[1m[35m (4.6ms)[0m DELETE FROM "uuids_uuids";
|
1211
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1212
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1213
|
-
[1m[36m (2.1ms)[0m [1mDELETE FROM "records";[0m
|
1214
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1215
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1216
|
-
[1m[35m (2.9ms)[0m DELETE FROM "cities";
|
1217
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1218
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1219
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1220
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1221
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1222
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1223
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.429117"], ["updated_at", "2014-10-25 21:49:29.429117"]]
|
1224
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1225
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1226
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "68c75d8e-dd1b-47b9-b6bb-3f923f7092c7"]]
|
1227
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1228
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
1229
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1230
|
-
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
1231
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1232
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
1233
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1234
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1235
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1236
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1237
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1238
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:49:29.447086"], ["updated_at", "2014-10-25 21:49:29.447086"]]
|
1239
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1240
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1241
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "b3229629-561c-499e-bcd2-82ce9421a39d"]]
|
1242
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1243
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
1244
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1245
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1246
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1247
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1248
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1249
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.450609"], ["updated_at", "2014-10-25 21:49:29.450609"]]
|
1250
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1251
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1252
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "e60cdf66-e312-436f-90d9-b29e655b6ef0"]]
|
1253
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1254
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1255
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1256
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1257
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1258
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1259
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.453655"], ["updated_at", "2014-10-25 21:49:29.453655"]]
|
1260
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1261
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1262
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "79b3d388-0d96-484d-a571-2d3212864fa0"]]
|
1263
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1264
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
1265
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1266
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1267
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1268
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1269
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1270
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:49:29.457628"], ["updated_at", "2014-10-25 21:49:29.457628"]]
|
1271
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1272
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1273
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1274
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1275
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1276
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1277
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.460156"], ["updated_at", "2014-10-25 21:49:29.460156"]]
|
1278
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1279
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1280
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1281
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1282
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1283
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1284
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:49:29.466735"], ["updated_at", "2014-10-25 21:49:29.466735"]]
|
1285
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1286
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1287
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1288
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1289
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1290
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1291
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.469497"], ["updated_at", "2014-10-25 21:49:29.469497"]]
|
1292
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1293
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1294
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "e41bfaa0-cddf-4956-bbba-d1adabee79ba"]]
|
1295
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1296
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1297
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1298
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1299
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1300
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1301
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1302
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1303
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.474448"], ["updated_at", "2014-10-25 21:49:29.474448"]]
|
1304
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1305
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1306
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "854a2c5c-bed0-4876-bb16-76a386e0176d"]]
|
1307
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1308
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1309
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1310
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1311
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1312
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1313
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1314
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1315
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.480761"], ["updated_at", "2014-10-25 21:49:29.480761"]]
|
1316
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1317
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "63a4ac6b-f309-4c55-bedf-848ee765f88b"]]
|
1318
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1319
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1320
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1321
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1322
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1323
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1324
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1325
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
1326
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1327
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1328
|
-
[1m[35m (0.6ms)[0m begin transaction
|
1329
|
-
[1m[36m (0.4ms)[0m [1mcommit transaction[0m
|
1330
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1331
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1332
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-25 21:49:29.521348"], ["updated_at", "2014-10-25 21:49:29.521348"]]
|
1333
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1334
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "b0f8fc55-0cb4-4afc-82bc-1d4f1ed5fedd"]]
|
1335
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1336
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "1133c8bd-0fe7-4a3d-af7f-5b44b28af251"]]
|
1337
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1338
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1339
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1340
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1341
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1342
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1343
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.526855"], ["updated_at", "2014-10-25 21:49:29.526855"]]
|
1344
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1345
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "e89e6847-1fe9-4502-8974-06b038989a06"]]
|
1346
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1347
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1348
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1349
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1350
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1351
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1352
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1353
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1354
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1355
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.534890"], ["updated_at", "2014-10-25 21:49:29.534890"]]
|
1356
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1357
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "7d07be44-87f7-4cea-b97e-ecb47c3c0bcd"]]
|
1358
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1359
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1360
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1361
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1362
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1363
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1364
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1365
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1366
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1367
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1368
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1369
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1370
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1371
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.543203"], ["updated_at", "2014-10-25 21:49:29.543203"]]
|
1372
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1373
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "4cc223cf-006c-4bf6-b62d-98a173e8a02d"]]
|
1374
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1375
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1376
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1377
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "7a418dbf-8aca-402e-a140-a636c73c5b6d"]]
|
1378
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1379
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1380
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1381
|
-
[1m[36mCity Load (0.2ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('4cc223cf-006c-4bf6-b62d-98a173e8a02d', '7a418dbf-8aca-402e-a140-a636c73c5b6d')[0m
|
1382
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1383
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1384
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1385
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1386
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1387
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-25 21:49:29.556398"], ["updated_at", "2014-10-25 21:49:29.556398"]]
|
1388
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1389
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "74c63dec-4f39-47cb-995c-896494025d4b"]]
|
1390
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1391
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1392
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1393
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1394
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1395
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1396
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1397
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1398
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1399
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1400
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1401
|
-
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
1402
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1403
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1404
|
-
[1m[36m (3.2ms)[0m [1mDELETE FROM "records";[0m
|
1405
|
-
[1m[35m (0.4ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1406
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1407
|
-
[1m[35m (2.8ms)[0m DELETE FROM "cities";
|
1408
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1409
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1410
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1411
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1412
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1413
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1414
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1415
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1416
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1417
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1418
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:46:29.194462"], ["updated_at", "2014-10-29 19:46:29.194462"]]
|
1419
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1420
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "2383c7ab-ae99-412c-aaee-feb0763747b5"]]
|
1421
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1422
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1423
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1424
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1425
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1426
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1427
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:46:29.211669"], ["updated_at", "2014-10-29 19:46:29.211669"]]
|
1428
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1429
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "cf7f831c-2b82-4188-9184-739fce4fd7b7"]]
|
1430
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1431
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "75a70973-3221-47ee-9ca7-d4269bd867a8"]]
|
1432
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1433
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1434
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1435
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1436
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1437
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1438
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:46:29.219044"], ["updated_at", "2014-10-29 19:46:29.219044"]]
|
1439
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1440
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "fea5bfe2-0d01-4e59-899e-12668edc0d91"]]
|
1441
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1442
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
1443
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1444
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1445
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1446
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1447
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1448
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
1449
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1450
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1451
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1452
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1453
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1454
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1455
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:46:29.273475"], ["updated_at", "2014-10-29 19:46:29.273475"]]
|
1456
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1457
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "dcebaaa2-d60e-46c2-aa0a-c2127ca968ad"]]
|
1458
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1459
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
1460
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1461
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1462
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1463
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1464
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1465
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1466
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1467
|
-
[1m[35mSQL (0.5ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:46:29.283223"], ["updated_at", "2014-10-29 19:46:29.283223"]]
|
1468
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1469
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "297ff65f-1964-4443-9a8e-9f818989547f"]]
|
1470
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1471
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1472
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1473
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "78053f55-039a-425f-91c3-52c6edd7f9f0"]]
|
1474
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1475
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1476
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1477
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('297ff65f-1964-4443-9a8e-9f818989547f', '78053f55-039a-425f-91c3-52c6edd7f9f0')
|
1478
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1479
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1480
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1481
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1482
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1483
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1484
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1485
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1486
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1487
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:46:29.306423"], ["updated_at", "2014-10-29 19:46:29.306423"]]
|
1488
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1489
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "49c6cb14-7a92-41b0-8c46-0b4a65ae8842"]]
|
1490
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1491
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
1492
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1493
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
1494
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1495
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1496
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1497
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1498
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1499
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1500
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1501
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1502
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1503
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1504
|
-
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
1505
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1506
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1507
|
-
[1m[36m (2.7ms)[0m [1mDELETE FROM "records";[0m
|
1508
|
-
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1509
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1510
|
-
[1m[35m (2.8ms)[0m DELETE FROM "cities";
|
1511
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1512
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1513
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1514
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1515
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1516
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1517
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:50:39.596881"], ["updated_at", "2014-10-29 19:50:39.596881"]]
|
1518
|
-
[1m[35mCity Load (0.3ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1519
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "12a00a33-b811-49fe-a52a-a2c4c497f4d8"]]
|
1520
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1521
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1522
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1523
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1524
|
-
[1m[35m (0.4ms)[0m rollback transaction
|
1525
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1526
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1527
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1528
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1529
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:50:39.644375"], ["updated_at", "2014-10-29 19:50:39.644375"]]
|
1530
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1531
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "346d27cb-8c7e-4e74-af6f-a609466df9dd"]]
|
1532
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1533
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "9756c720-c0d5-425b-af73-4e7959768d6e"]]
|
1534
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1535
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1536
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1537
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1538
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1539
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1540
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:50:39.653338"], ["updated_at", "2014-10-29 19:50:39.653338"]]
|
1541
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1542
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "7b8f5d54-e411-4a38-95ef-5b5b1faa024f"]]
|
1543
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1544
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1545
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1546
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "edd07710-ddf8-440f-895b-be1ef17b809e"]]
|
1547
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1548
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1549
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1550
|
-
[1m[35mCity Load (0.3ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('7b8f5d54-e411-4a38-95ef-5b5b1faa024f', 'edd07710-ddf8-440f-895b-be1ef17b809e')
|
1551
|
-
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1552
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1553
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
1554
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1555
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1556
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:50:39.673155"], ["updated_at", "2014-10-29 19:50:39.673155"]]
|
1557
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1558
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "9ac83d5d-d3f7-45b4-a9d5-5cc8075e358a"]]
|
1559
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1560
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1561
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1562
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1563
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1564
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1565
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:50:39.681410"], ["updated_at", "2014-10-29 19:50:39.681410"]]
|
1566
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1567
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "9ae0b6a6-12e0-4d73-a0a9-0e5b4ae9ea4a"]]
|
1568
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1569
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1570
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1571
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1572
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1573
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1574
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1575
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1576
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1577
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:50:39.688023"], ["updated_at", "2014-10-29 19:50:39.688023"]]
|
1578
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1579
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "e6428473-cb16-41e4-89e9-b11c672fe4c7"]]
|
1580
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1581
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1582
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1583
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1584
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1585
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1586
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1587
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
1588
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1589
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1590
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1591
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1592
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1593
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1594
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1595
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1596
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1597
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1598
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1599
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1600
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1601
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1602
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1603
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1604
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1605
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1606
|
-
[1m[35m (5.4ms)[0m DELETE FROM "uuids_uuids";
|
1607
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1608
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1609
|
-
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
1610
|
-
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1611
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1612
|
-
[1m[35m (2.3ms)[0m DELETE FROM "cities";
|
1613
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1614
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1615
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1616
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1617
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1618
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1619
|
-
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:51:26.941397"], ["updated_at", "2014-10-29 19:51:26.941397"]]
|
1620
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1621
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "21c5f6f9-39a1-46ac-bfa8-dbdd8b85bdb5"]]
|
1622
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1623
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1624
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1625
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1626
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1627
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1628
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1629
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1630
|
-
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
1631
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:51:26.989598"], ["updated_at", "2014-10-29 19:51:26.989598"]]
|
1632
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1633
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "4aad507e-06f5-4a14-b65c-6f4a225c3344"]]
|
1634
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1635
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "2024ff49-001a-48f6-9860-e24867752e94"]]
|
1636
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1637
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1638
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1639
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1640
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1641
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1642
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:51:27.000237"], ["updated_at", "2014-10-29 19:51:27.000237"]]
|
1643
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1644
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "bda61e40-0bad-4391-809f-8e3b0d46b691"]]
|
1645
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1646
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1647
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1648
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "bc35da19-6afd-4951-bb69-2695609845cd"]]
|
1649
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1650
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1651
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1652
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('bda61e40-0bad-4391-809f-8e3b0d46b691', 'bc35da19-6afd-4951-bb69-2695609845cd')
|
1653
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1654
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1655
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1656
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1657
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1658
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:51:27.017831"], ["updated_at", "2014-10-29 19:51:27.017831"]]
|
1659
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1660
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "f5dd9454-9ae4-4daa-bf1c-823440ce8a0a"]]
|
1661
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1662
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1663
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1664
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1665
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1666
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1667
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:51:27.028397"], ["updated_at", "2014-10-29 19:51:27.028397"]]
|
1668
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1669
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "58c6d4b2-d5aa-45d4-92f6-47ba1af9596f"]]
|
1670
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1671
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1672
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1673
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1674
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1675
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1676
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1677
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1678
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1679
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:51:27.036846"], ["updated_at", "2014-10-29 19:51:27.036846"]]
|
1680
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1681
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "bdf55c61-e45a-4576-8020-d74792cdfefd"]]
|
1682
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1683
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1684
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1685
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1686
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1687
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1688
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1689
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
1690
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1691
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1692
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1693
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1694
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1695
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1696
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1697
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1698
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1699
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1700
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1701
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1702
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1703
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1704
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1705
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1706
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1707
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1708
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1709
|
-
[1m[35m (4.4ms)[0m DELETE FROM "uuids_uuids";
|
1710
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1711
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1712
|
-
[1m[36m (2.3ms)[0m [1mDELETE FROM "records";[0m
|
1713
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1714
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1715
|
-
[1m[35m (2.4ms)[0m DELETE FROM "cities";
|
1716
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1717
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1718
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1719
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1720
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1721
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1722
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1723
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1724
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1725
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
1726
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1727
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1728
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1729
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1730
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1731
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1732
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1733
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1734
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:53:01.019622"], ["updated_at", "2014-10-29 19:53:01.019622"]]
|
1735
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1736
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "9e55c5dc-9ecf-47fe-b09c-b7838b27f1e5"]]
|
1737
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1738
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1739
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1740
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "59405c80-9c80-4538-9d8b-bec7091bf4c0"]]
|
1741
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1742
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1743
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1744
|
-
[1m[36mCity Load (0.2ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('9e55c5dc-9ecf-47fe-b09c-b7838b27f1e5', '59405c80-9c80-4538-9d8b-bec7091bf4c0')[0m
|
1745
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1746
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1747
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1748
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1749
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1750
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:53:01.073034"], ["updated_at", "2014-10-29 19:53:01.073034"]]
|
1751
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1752
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "ca15f1a4-6af2-4c8e-8c99-6ba4c3e0d20c"]]
|
1753
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1754
|
-
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1755
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1756
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1757
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1758
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1759
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:53:01.084341"], ["updated_at", "2014-10-29 19:53:01.084341"]]
|
1760
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1761
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "cc9899eb-b82f-4ec7-b663-3adff1354957"]]
|
1762
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1763
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
1764
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1765
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
1766
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1767
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1768
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
1769
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1770
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1771
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:53:01.092233"], ["updated_at", "2014-10-29 19:53:01.092233"]]
|
1772
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1773
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "3e755215-6204-429c-9c6b-016fe06ed83d"]]
|
1774
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1775
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1776
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1777
|
-
[1m[35mSQL (0.2ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
1778
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1779
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1780
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1781
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "cities" WHERE "cities"."id" = ? [["id", 1]]
|
1782
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1783
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1784
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1785
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1786
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1787
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1788
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:53:01.108260"], ["updated_at", "2014-10-29 19:53:01.108260"]]
|
1789
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1790
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "a8962976-0423-4274-8060-f432788ddccc"]]
|
1791
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1792
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1793
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1794
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1795
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1796
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1797
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1798
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1799
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1800
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:53:01.120376"], ["updated_at", "2014-10-29 19:53:01.120376"]]
|
1801
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1802
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "cf825746-6950-4927-9ba2-7e929b0db523"]]
|
1803
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1804
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "620b67a5-19ca-4b1d-97da-c328494b61ea"]]
|
1805
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1806
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1807
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1808
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1809
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1810
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1811
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1812
|
-
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
1813
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1814
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1815
|
-
[1m[36m (2.6ms)[0m [1mDELETE FROM "records";[0m
|
1816
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1817
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1818
|
-
[1m[35m (2.6ms)[0m DELETE FROM "cities";
|
1819
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1820
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1821
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1822
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1823
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1824
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1825
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:55:54.402047"], ["updated_at", "2014-10-29 19:55:54.402047"]]
|
1826
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1827
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "3969802f-79ae-4387-8e21-c013087c44d9"]]
|
1828
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1829
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1830
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1831
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "d3a0490a-2072-43a6-8f3e-360583a4bf3f"]]
|
1832
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1833
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1834
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1835
|
-
[1m[36mCity Load (0.2ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('3969802f-79ae-4387-8e21-c013087c44d9', 'd3a0490a-2072-43a6-8f3e-360583a4bf3f')[0m
|
1836
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1837
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1838
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1839
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1840
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1841
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1842
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1843
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1844
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1845
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:55:54.477403"], ["updated_at", "2014-10-29 19:55:54.477403"]]
|
1846
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1847
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "a8df1d3d-33af-482c-abe7-2ba767dee750"]]
|
1848
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1849
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1850
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1851
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1852
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1853
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1854
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1855
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1856
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1857
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1858
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1859
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1860
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1861
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:55:54.489622"], ["updated_at", "2014-10-29 19:55:54.489622"]]
|
1862
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1863
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "a0b0709e-bf78-4675-9f87-d12eb56cab4a"]]
|
1864
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1865
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "463d0c45-7214-4b16-a4d8-f1d11d07dd85"]]
|
1866
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1867
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1868
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1869
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1870
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1871
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1872
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:55:54.496226"], ["updated_at", "2014-10-29 19:55:54.496226"]]
|
1873
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1874
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "249264c0-a938-4c4e-995f-84af03920b36"]]
|
1875
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1876
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1877
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1878
|
-
[1m[35mSQL (0.2ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
1879
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1880
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1881
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1882
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "cities" WHERE "cities"."id" = ? [["id", 1]]
|
1883
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1884
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1885
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1886
|
-
[1m[35m (0.0ms)[0m commit transaction
|
1887
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1888
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1889
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:55:54.513677"], ["updated_at", "2014-10-29 19:55:54.513677"]]
|
1890
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1891
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "7db944f3-489a-4e8e-8eb3-4bc39917e5da"]]
|
1892
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1893
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1894
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1895
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1896
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1897
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1898
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:55:54.520349"], ["updated_at", "2014-10-29 19:55:54.520349"]]
|
1899
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1900
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "1e4211e4-95b4-449f-b1b6-e75a32d17680"]]
|
1901
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1902
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
1903
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1904
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1905
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1906
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1907
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1908
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1909
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1910
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1911
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1912
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1913
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1914
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1915
|
-
[1m[35m (11.1ms)[0m DELETE FROM "uuids_uuids";
|
1916
|
-
[1m[36m (0.9ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1917
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
1918
|
-
[1m[36m (2.5ms)[0m [1mDELETE FROM "records";[0m
|
1919
|
-
[1m[35m (0.5ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
1920
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
1921
|
-
[1m[35m (7.3ms)[0m DELETE FROM "cities";
|
1922
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
1923
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
1924
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1925
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1926
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1927
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1928
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1929
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1930
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1931
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1932
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1933
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1934
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1935
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1936
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1937
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1938
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1939
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1940
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1941
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1942
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1943
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1944
|
-
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:56:28.602242"], ["updated_at", "2014-10-29 19:56:28.602242"]]
|
1945
|
-
[1m[35mCity Load (0.3ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1946
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "855f733b-12a3-44c4-bd4e-f3a37697272f"]]
|
1947
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1948
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "504518b3-47ac-465d-978d-2e0d17406319"]]
|
1949
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1950
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1951
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1952
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
1953
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1954
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1955
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 19:56:28.633199"], ["updated_at", "2014-10-29 19:56:28.633199"]]
|
1956
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1957
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "edf51ab7-1bda-49c3-bad8-e55819d086f8"]]
|
1958
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1959
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1960
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1961
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1962
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1963
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1964
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:56:28.643554"], ["updated_at", "2014-10-29 19:56:28.643554"]]
|
1965
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1966
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "0d78eaf9-ca5e-4c9a-897a-d1822706607e"]]
|
1967
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1968
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
1969
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1970
|
-
[1m[36mUuids::Uuid Load (0.2ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
1971
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1972
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1973
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1974
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1975
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1976
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:56:28.708990"], ["updated_at", "2014-10-29 19:56:28.708990"]]
|
1977
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1978
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "f7c69482-1150-459d-825f-b38b44f7eeed"]]
|
1979
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1980
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1981
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1982
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
1983
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
1984
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1985
|
-
[1m[35m (0.1ms)[0m commit transaction
|
1986
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1987
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1988
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:56:28.719244"], ["updated_at", "2014-10-29 19:56:28.719244"]]
|
1989
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1990
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "be3fad1a-f67d-4b5c-8e8c-0076dba4dc06"]]
|
1991
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1992
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1993
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
1994
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "153802d7-0d1f-4dcb-975e-a7ceefec3efb"]]
|
1995
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1996
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
1997
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
1998
|
-
[1m[36mCity Load (0.3ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('be3fad1a-f67d-4b5c-8e8c-0076dba4dc06', '153802d7-0d1f-4dcb-975e-a7ceefec3efb')[0m
|
1999
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2000
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2001
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2002
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2003
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2004
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 19:56:28.742202"], ["updated_at", "2014-10-29 19:56:28.742202"]]
|
2005
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2006
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "13add4fc-916a-4b88-970c-4e2dacc308b3"]]
|
2007
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2008
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2009
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2010
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
2011
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2012
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2013
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2014
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
2015
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2016
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2017
|
-
[1m[35m (2.9ms)[0m DELETE FROM "uuids_uuids";
|
2018
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2019
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2020
|
-
[1m[36m (2.4ms)[0m [1mDELETE FROM "records";[0m
|
2021
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2022
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2023
|
-
[1m[35m (2.9ms)[0m DELETE FROM "cities";
|
2024
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2025
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2026
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2027
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2028
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2029
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2030
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2031
|
-
[1m[35m (4.9ms)[0m DELETE FROM "uuids_uuids";
|
2032
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2033
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2034
|
-
[1m[36m (2.2ms)[0m [1mDELETE FROM "records";[0m
|
2035
|
-
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2036
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2037
|
-
[1m[35m (2.3ms)[0m DELETE FROM "cities";
|
2038
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2039
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2040
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2041
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2042
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2043
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2044
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2045
|
-
[1m[35m (4.1ms)[0m DELETE FROM "uuids_uuids";
|
2046
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2047
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2048
|
-
[1m[36m (2.6ms)[0m [1mDELETE FROM "records";[0m
|
2049
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2050
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2051
|
-
[1m[35m (2.4ms)[0m DELETE FROM "cities";
|
2052
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2053
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2054
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2055
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2056
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2057
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2058
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2059
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2060
|
-
[1m[35m (4.2ms)[0m DELETE FROM "uuids_uuids";
|
2061
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2062
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2063
|
-
[1m[36m (1.9ms)[0m [1mDELETE FROM "records";[0m
|
2064
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2065
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2066
|
-
[1m[35m (2.4ms)[0m DELETE FROM "cities";
|
2067
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2068
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2069
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2070
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2071
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2072
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2073
|
-
[1m[35m (4.2ms)[0m DELETE FROM "uuids_uuids";
|
2074
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2075
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2076
|
-
[1m[36m (2.3ms)[0m [1mDELETE FROM "records";[0m
|
2077
|
-
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2078
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2079
|
-
[1m[35m (2.2ms)[0m DELETE FROM "cities";
|
2080
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2081
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2082
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2083
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2084
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2085
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2086
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2087
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2088
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2089
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2090
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2091
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2092
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2093
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2094
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:44:42.761159"], ["updated_at", "2014-10-29 20:44:42.761159"]]
|
2095
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2096
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "c8d15409-b65d-4e5a-8869-0e18cce37387"]]
|
2097
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2098
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2099
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2100
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "bc97ef2b-8ca7-4dc9-bcab-e588c0ebfd9d"]]
|
2101
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2102
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2103
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2104
|
-
[1m[36mCity Load (0.2ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('c8d15409-b65d-4e5a-8869-0e18cce37387', 'bc97ef2b-8ca7-4dc9-bcab-e588c0ebfd9d')[0m
|
2105
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2106
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2107
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2108
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2109
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2110
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2111
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2112
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2113
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2114
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:44:42.834773"], ["updated_at", "2014-10-29 20:44:42.834773"]]
|
2115
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2116
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "e5241f04-292d-418c-b24d-4dd74f301d89"]]
|
2117
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2118
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "6d0b34ef-d202-4ee4-9d93-6e96217f1500"]]
|
2119
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2120
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2121
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2122
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2123
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2124
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2125
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2126
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2127
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2128
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2129
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:44:42.847917"], ["updated_at", "2014-10-29 20:44:42.847917"]]
|
2130
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2131
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "c19457d7-6a32-438e-9bba-5b2e0c4998d8"]]
|
2132
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2133
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
2134
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2135
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
2136
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2137
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2138
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2139
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2140
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2141
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:44:42.854706"], ["updated_at", "2014-10-29 20:44:42.854706"]]
|
2142
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2143
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "8fa17949-d6ed-4136-b306-884d622a7054"]]
|
2144
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2145
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
2146
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2147
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2148
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2149
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2150
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2151
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2152
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2153
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:44:42.868860"], ["updated_at", "2014-10-29 20:44:42.868860"]]
|
2154
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2155
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "8651c8a5-a184-467d-bb46-da84462069b9"]]
|
2156
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2157
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2158
|
-
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2159
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
2160
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2161
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2162
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2163
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "cities" WHERE "cities"."id" = ? [["id", 1]]
|
2164
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2165
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2166
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2167
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2168
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2169
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2170
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:44:42.877399"], ["updated_at", "2014-10-29 20:44:42.877399"]]
|
2171
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2172
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "1844dd74-284c-4781-a4ca-785d2cf976ba"]]
|
2173
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2174
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2175
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2176
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2177
|
-
[1m[35m (5.0ms)[0m DELETE FROM "uuids_uuids";
|
2178
|
-
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2179
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2180
|
-
[1m[36m (2.1ms)[0m [1mDELETE FROM "records";[0m
|
2181
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2182
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2183
|
-
[1m[35m (2.4ms)[0m DELETE FROM "cities";
|
2184
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2185
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2186
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2187
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2188
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2189
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2190
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2191
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2192
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2193
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2194
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2195
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2196
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2197
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2198
|
-
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:56:09.552743"], ["updated_at", "2014-10-29 20:56:09.552743"]]
|
2199
|
-
[1m[35mCity Load (0.2ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2200
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "d6749511-691e-4500-a9ca-a92188f7d32a"]]
|
2201
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2202
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2203
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2204
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "19d9c54f-832c-4d6e-a360-c73b8c95b9cd"]]
|
2205
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2206
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2207
|
-
[1m[35mUuids::Uuid Load (0.2ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2208
|
-
[1m[36mCity Load (0.2ms)[0m [1mSELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('d6749511-691e-4500-a9ca-a92188f7d32a', '19d9c54f-832c-4d6e-a360-c73b8c95b9cd')[0m
|
2209
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2210
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2211
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2212
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2213
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2214
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:56:09.643012"], ["updated_at", "2014-10-29 20:56:09.643012"]]
|
2215
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2216
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "f39d8350-b5cd-421c-a8c1-c0dabb242004"]]
|
2217
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2218
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
2219
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2220
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
2221
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2222
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2223
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2224
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2225
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2226
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:56:09.650676"], ["updated_at", "2014-10-29 20:56:09.650676"]]
|
2227
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2228
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "1b4183b9-20cd-4cd2-8046-377e72eda639"]]
|
2229
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2230
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2231
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2232
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
2233
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2234
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2235
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2236
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
2237
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2238
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2239
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2240
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2241
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2242
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2243
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2244
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2245
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2246
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2247
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:56:09.670140"], ["updated_at", "2014-10-29 20:56:09.670140"]]
|
2248
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2249
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "2663e7cf-457e-4529-a697-f44c1013ae8c"]]
|
2250
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2251
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
2252
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2253
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2254
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2255
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2256
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2257
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2258
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2259
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:56:09.679978"], ["updated_at", "2014-10-29 20:56:09.679978"]]
|
2260
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2261
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "b6c1ad74-8617-415b-86bb-07afe1376c92"]]
|
2262
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2263
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2264
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2265
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2266
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2267
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2268
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2269
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2270
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2271
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2272
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:56:09.690007"], ["updated_at", "2014-10-29 20:56:09.690007"]]
|
2273
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2274
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "c4e25d91-46df-4f03-9d1a-0aaa55b7b086"]]
|
2275
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2276
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "043b7c2a-7dfe-4aef-bf9d-48702409ca60"]]
|
2277
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2278
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2279
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2280
|
-
[1m[35m (5.2ms)[0m DELETE FROM "uuids_uuids";
|
2281
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2282
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2283
|
-
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
2284
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2285
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2286
|
-
[1m[35m (2.8ms)[0m DELETE FROM "cities";
|
2287
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2288
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2289
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2290
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2291
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2292
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2293
|
-
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:57:08.548775"], ["updated_at", "2014-10-29 20:57:08.548775"]]
|
2294
|
-
[1m[35mCity Load (0.2ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2295
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "ce9983cf-d08b-461b-ad84-2c5dab27589a"]]
|
2296
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2297
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2298
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2299
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
2300
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2301
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2302
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2303
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
2304
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2305
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2306
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2307
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2308
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2309
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2310
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:57:08.598758"], ["updated_at", "2014-10-29 20:57:08.598758"]]
|
2311
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2312
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "20c955ec-fd40-428d-aaed-7c62dc1a35fb"]]
|
2313
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2314
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2315
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2316
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2317
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2318
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2319
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2320
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2321
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2322
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2323
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:57:08.640841"], ["updated_at", "2014-10-29 20:57:08.640841"]]
|
2324
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2325
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "ce8aa95e-1787-4db0-8970-96cdae9e4bbd"]]
|
2326
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2327
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
2328
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2329
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
2330
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2331
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2332
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2333
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2334
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2335
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:57:08.649874"], ["updated_at", "2014-10-29 20:57:08.649874"]]
|
2336
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2337
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "130895ab-a8b1-4824-a2d1-005653785ed1"]]
|
2338
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2339
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
2340
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2341
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2342
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2343
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2344
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2345
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2346
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2347
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:57:08.663240"], ["updated_at", "2014-10-29 20:57:08.663240"]]
|
2348
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2349
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "33c1b148-4070-4889-bec2-391c27e9447c"]]
|
2350
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2351
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "1cd1f462-cf55-4fd3-9c07-de9d4027f4b5"]]
|
2352
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2353
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2354
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2355
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2356
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2357
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2358
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2359
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2360
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2361
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2362
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:57:08.672630"], ["updated_at", "2014-10-29 20:57:08.672630"]]
|
2363
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2364
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "16914648-37c4-46ff-b70b-82b94449b242"]]
|
2365
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2366
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2367
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2368
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "332969e6-eaee-42f5-915b-2f19171710ec"]]
|
2369
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2370
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2371
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2372
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('16914648-37c4-46ff-b70b-82b94449b242', '332969e6-eaee-42f5-915b-2f19171710ec')
|
2373
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2374
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2375
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2376
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2377
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2378
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2379
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2380
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2381
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2382
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2383
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2384
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2385
|
-
[1m[35m (4.7ms)[0m DELETE FROM "uuids_uuids";
|
2386
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2387
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2388
|
-
[1m[36m (2.0ms)[0m [1mDELETE FROM "records";[0m
|
2389
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2390
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2391
|
-
[1m[35m (2.6ms)[0m DELETE FROM "cities";
|
2392
|
-
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2393
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2394
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2395
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2396
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2397
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2398
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2399
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2400
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2401
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2402
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2403
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2404
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2405
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2406
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2407
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2408
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2409
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2410
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2411
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2412
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2413
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2414
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2415
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2416
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2417
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2418
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2419
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2420
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2421
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2422
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2423
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2424
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2425
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2426
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2427
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2428
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2429
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2430
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2431
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2432
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2433
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2434
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2435
|
-
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
2436
|
-
[1m[36m (0.4ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2437
|
-
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2438
|
-
[1m[36m (2.2ms)[0m [1mDELETE FROM "records";[0m
|
2439
|
-
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2440
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2441
|
-
[1m[35m (2.5ms)[0m DELETE FROM "cities";
|
2442
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2443
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2444
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2445
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2446
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2447
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2448
|
-
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:59:10.817212"], ["updated_at", "2014-10-29 20:59:10.817212"]]
|
2449
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2450
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "59f37e4c-9fad-4363-b80e-48f82f50d18b"]]
|
2451
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2452
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
2453
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2454
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2455
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
2456
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2457
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2458
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2459
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2460
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:59:10.860427"], ["updated_at", "2014-10-29 20:59:10.860427"]]
|
2461
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2462
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "85c0545e-0099-4f27-9e7b-f8eaaf486dce"]]
|
2463
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2464
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "101e9c15-cdcd-466f-960e-745195ae2520"]]
|
2465
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2466
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2467
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2468
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2469
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2470
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2471
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2472
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2473
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2474
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2475
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:59:10.874816"], ["updated_at", "2014-10-29 20:59:10.874816"]]
|
2476
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2477
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "afacef1d-109b-496f-bae3-d25fa01cd634"]]
|
2478
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2479
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2480
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2481
|
-
[1m[35mSQL (0.2ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
2482
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2483
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2484
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2485
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "cities" WHERE "cities"."id" = ? [["id", 1]]
|
2486
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2487
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2488
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2489
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2490
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2491
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2492
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 20:59:10.912352"], ["updated_at", "2014-10-29 20:59:10.912352"]]
|
2493
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2494
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "003a8810-746d-40af-a7c3-66b28534df81"]]
|
2495
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2496
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2497
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2498
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2499
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2500
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2501
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:59:10.919525"], ["updated_at", "2014-10-29 20:59:10.919525"]]
|
2502
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2503
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "7b8a1e71-669f-4986-829f-3ad26f1cfe09"]]
|
2504
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2505
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2506
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2507
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "d6c77ae0-5973-4788-aa55-2fe582843218"]]
|
2508
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2509
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2510
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2511
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('7b8a1e71-669f-4986-829f-3ad26f1cfe09', 'd6c77ae0-5973-4788-aa55-2fe582843218')
|
2512
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2513
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2514
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2515
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2516
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2517
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 20:59:10.937655"], ["updated_at", "2014-10-29 20:59:10.937655"]]
|
2518
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2519
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "8b4546a4-6fdd-4573-baf6-b1287cce95ef"]]
|
2520
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2521
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
2522
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2523
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
2524
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2525
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2526
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2527
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2528
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2529
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2530
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2531
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2532
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2533
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2534
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2535
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2536
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2537
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2538
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2539
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
2540
|
-
FROM sqlite_master
|
2541
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
2542
|
-
UNION ALL
|
2543
|
-
SELECT sql
|
2544
|
-
FROM sqlite_temp_master
|
2545
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
2546
|
-
[0m
|
2547
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
2548
|
-
FROM sqlite_master
|
2549
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
2550
|
-
UNION ALL
|
2551
|
-
SELECT sql
|
2552
|
-
FROM sqlite_temp_master
|
2553
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
2554
|
-
|
2555
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2556
|
-
[1m[35m (4.8ms)[0m DELETE FROM "uuids_uuids";
|
2557
|
-
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2558
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2559
|
-
[1m[36m (2.6ms)[0m [1mDELETE FROM "records";[0m
|
2560
|
-
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2561
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2562
|
-
[1m[35m (2.4ms)[0m DELETE FROM "cities";
|
2563
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2564
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2565
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2566
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2567
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2568
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2569
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:03:17.876099"], ["updated_at", "2014-10-29 21:03:17.876099"]]
|
2570
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2571
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2572
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "90ac399b-e5ba-4033-997e-5be16520dcf3"]]
|
2573
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2574
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2575
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2576
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2577
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2578
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2579
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:03:17.888970"], ["updated_at", "2014-10-29 21:03:17.888970"]]
|
2580
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2581
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2582
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "f5d51729-0932-468b-8227-b1d3fdf11e8f"]]
|
2583
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2584
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
2585
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2586
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2587
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2588
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2589
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2590
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:17.896575"], ["updated_at", "2014-10-29 21:03:17.896575"]]
|
2591
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2592
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2593
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "5551ddc5-3fa9-4e51-acb4-fb9b6d8adbe1"]]
|
2594
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2595
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2596
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2597
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2598
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2599
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2600
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2601
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2602
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:17.905989"], ["updated_at", "2014-10-29 21:03:17.905989"]]
|
2603
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2604
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2605
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "c939a5af-abf6-44fe-b336-4d2f95dd8d3f"]]
|
2606
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2607
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2608
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2609
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2610
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2611
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2612
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2613
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2614
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:17.910502"], ["updated_at", "2014-10-29 21:03:17.910502"]]
|
2615
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2616
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2617
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "613eb305-0f4e-473c-82e7-c1d97b75c05d"]]
|
2618
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2619
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
2620
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2621
|
-
[1m[36mRecord Load (0.1ms)[0m [1mSELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1[0m [["id", 1]]
|
2622
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2623
|
-
[1m[36mUuids::Uuid Load (0.0ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
2624
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2625
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2626
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2627
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2628
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2629
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:03:17.918070"], ["updated_at", "2014-10-29 21:03:17.918070"]]
|
2630
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2631
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2632
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "400417e3-a176-466c-9171-edb24d17afa4"]]
|
2633
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2634
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
2635
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2636
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2637
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2638
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2639
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2640
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:17.921909"], ["updated_at", "2014-10-29 21:03:17.921909"]]
|
2641
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2642
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2643
|
-
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
2644
|
-
[1m[35m (0.4ms)[0m commit transaction
|
2645
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2646
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2647
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:03:17.948186"], ["updated_at", "2014-10-29 21:03:17.948186"]]
|
2648
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2649
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2650
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2651
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2652
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2653
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2654
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:17.951129"], ["updated_at", "2014-10-29 21:03:17.951129"]]
|
2655
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2656
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2657
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2658
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2659
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2660
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2661
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:03:17.961590"], ["updated_at", "2014-10-29 21:03:17.961590"]]
|
2662
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2663
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "b0082091-f7da-46b1-af01-dbe99b95c99f"]]
|
2664
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2665
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
2666
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2667
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1[0m
|
2668
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2669
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2670
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2671
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2672
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2673
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:03:17.969139"], ["updated_at", "2014-10-29 21:03:17.969139"]]
|
2674
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2675
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "c2079ecc-813f-4130-8a93-3eed80f53e17"]]
|
2676
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2677
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2678
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2679
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2680
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2681
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2682
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:17.974316"], ["updated_at", "2014-10-29 21:03:17.974316"]]
|
2683
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2684
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "d679cca9-b44f-4941-b1eb-bd28328ab192"]]
|
2685
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2686
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2687
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2688
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "9c037d4c-14b2-48a1-b42e-a23e8c49d0ed"]]
|
2689
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2690
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2691
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2692
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('d679cca9-b44f-4941-b1eb-bd28328ab192', '9c037d4c-14b2-48a1-b42e-a23e8c49d0ed')
|
2693
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2694
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2695
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2696
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2697
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2698
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:17.992038"], ["updated_at", "2014-10-29 21:03:17.992038"]]
|
2699
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2700
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "dafe7872-e9f0-45d5-8961-95e381266741"]]
|
2701
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2702
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "f93e9ff1-b462-4cff-8639-ed878d5c3ddd"]]
|
2703
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2704
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2705
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2706
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2707
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2708
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2709
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2710
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2711
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2712
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
2713
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2714
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2715
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2716
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2717
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:03:18.002510"], ["updated_at", "2014-10-29 21:03:18.002510"]]
|
2718
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2719
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "dcb89d3c-bcc5-4836-9256-c7a6bf4ee275"]]
|
2720
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2721
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2722
|
-
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2723
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1[0m
|
2724
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2725
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2726
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2727
|
-
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cities" WHERE "cities"."id" = ?[0m [["id", 1]]
|
2728
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2729
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2730
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2731
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2732
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2733
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2734
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:03:18.010801"], ["updated_at", "2014-10-29 21:03:18.010801"]]
|
2735
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2736
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "11cb1260-d13f-4786-a853-1608bb4d2804"]]
|
2737
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2738
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
2739
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2740
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2741
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2742
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2743
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2744
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2745
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2746
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2747
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2748
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2749
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2750
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2751
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2752
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
2753
|
-
FROM sqlite_master
|
2754
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
2755
|
-
UNION ALL
|
2756
|
-
SELECT sql
|
2757
|
-
FROM sqlite_temp_master
|
2758
|
-
WHERE name='index_uuids_uuids_on_value' AND type='index'
|
2759
|
-
[0m
|
2760
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
2761
|
-
FROM sqlite_master
|
2762
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
2763
|
-
UNION ALL
|
2764
|
-
SELECT sql
|
2765
|
-
FROM sqlite_temp_master
|
2766
|
-
WHERE name='index_uuids_uuids_on_record_id_and_record_type' AND type='index'
|
2767
|
-
|
2768
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2769
|
-
[1m[35m (4.6ms)[0m DELETE FROM "uuids_uuids";
|
2770
|
-
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2771
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'uuids_uuids';
|
2772
|
-
[1m[36m (2.8ms)[0m [1mDELETE FROM "records";[0m
|
2773
|
-
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
2774
|
-
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'records';[0m
|
2775
|
-
[1m[35m (1.8ms)[0m DELETE FROM "cities";
|
2776
|
-
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
2777
|
-
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'cities';
|
2778
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2779
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2780
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2781
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2782
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2783
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2784
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2785
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2786
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2787
|
-
[1m[35m (0.1ms)[0m commit transaction
|
2788
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2789
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2790
|
-
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:07:05.884633"], ["updated_at", "2014-10-29 21:07:05.884633"]]
|
2791
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2792
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "420d0aea-7d3c-42da-8de1-d2ed4f5b30c0"]]
|
2793
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2794
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "c7bfa327-240e-4a5e-a035-1bffe850e389"]]
|
2795
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2796
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2797
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2798
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2799
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2800
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2801
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:05.903485"], ["updated_at", "2014-10-29 21:07:05.903485"]]
|
2802
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2803
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "a9d9c056-2399-408f-8e65-67f2b73d1edc"]]
|
2804
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2805
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
2806
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2807
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ? [["record_id", 1], ["record_type", "City"]]
|
2808
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2809
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2810
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2811
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2812
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2813
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:05.924570"], ["updated_at", "2014-10-29 21:07:05.924570"]]
|
2814
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2815
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "e2d1001f-bc47-4a49-b664-2f1bffb96a3d"]]
|
2816
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2817
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2818
|
-
[1m[36mCity Load (0.0ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2819
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "a538ded3-5f27-49c1-8746-558925ddf6f2"]]
|
2820
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2821
|
-
[1m[35mCity Load (0.0ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2822
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2823
|
-
[1m[35mCity Load (0.2ms)[0m SELECT DISTINCT "cities".* FROM "cities" INNER JOIN "uuids_uuids" ON "uuids_uuids"."record_id" = "cities"."id" AND "uuids_uuids"."record_type" = 'City' WHERE "uuids_uuids"."value" IN ('e2d1001f-bc47-4a49-b664-2f1bffb96a3d', 'a538ded3-5f27-49c1-8746-558925ddf6f2')
|
2824
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2825
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2826
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2827
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2828
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2829
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2830
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2831
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2832
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2833
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2834
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2835
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2836
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2837
|
-
[1m[35mSQL (0.4ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:05.956010"], ["updated_at", "2014-10-29 21:07:05.956010"]]
|
2838
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2839
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "a731cfb6-1c41-4342-995d-f793d6468f0e"]]
|
2840
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2841
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
2842
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2843
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" ORDER BY "uuids_uuids"."id" ASC LIMIT 1
|
2844
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2845
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2846
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2847
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2848
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2849
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:05.964187"], ["updated_at", "2014-10-29 21:07:05.964187"]]
|
2850
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2851
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "City"], ["value", "fd8cc0bf-c9b6-4f4e-beab-74d8f93e35fd"]]
|
2852
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2853
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2854
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2855
|
-
[1m[35mSQL (0.2ms)[0m DELETE FROM "uuids_uuids" WHERE "uuids_uuids"."id" = 1
|
2856
|
-
[1m[36mCity Load (0.1ms)[0m [1mSELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1[0m [["id", 1]]
|
2857
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2858
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."record_id" = ? AND "uuids_uuids"."record_type" = ?[0m [["record_id", 1], ["record_type", "City"]]
|
2859
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "cities" WHERE "cities"."id" = ? [["id", 1]]
|
2860
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2861
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2862
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2863
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2864
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2865
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2866
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cities" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:07:05.975364"], ["updated_at", "2014-10-29 21:07:05.975364"]]
|
2867
|
-
[1m[35mCity Load (0.1ms)[0m SELECT "cities".* FROM "cities" WHERE "cities"."id" = ? LIMIT 1 [["id", 1]]
|
2868
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "City"], ["value", "a4a73f88-d5b5-4b73-9343-9b3826115577"]]
|
2869
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2870
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2871
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2872
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2873
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2874
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2875
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:05.985604"], ["updated_at", "2014-10-29 21:07:05.985604"]]
|
2876
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2877
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2878
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "c2471606-2dda-425b-99b8-2f6732f4ba8c"]]
|
2879
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2880
|
-
[1m[36mUuids::Uuid Load (0.1ms)[0m [1mSELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1[0m [["id", 1]]
|
2881
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
2882
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2883
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2884
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2885
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2886
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:07:05.993582"], ["updated_at", "2014-10-29 21:07:05.993582"]]
|
2887
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2888
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2889
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "517fb745-1a1d-47d2-a85a-344564ef3baf"]]
|
2890
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2891
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
2892
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2893
|
-
[1m[35mRecord Load (0.1ms)[0m SELECT "records".* FROM "records" WHERE "records"."id" = ? LIMIT 1 [["id", 1]]
|
2894
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2895
|
-
[1m[35mUuids::Uuid Load (0.1ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
2896
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2897
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2898
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2899
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2900
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2901
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:06.001290"], ["updated_at", "2014-10-29 21:07:06.001290"]]
|
2902
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2903
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2904
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "25789a7f-9516-49c4-bcca-9a9a1aa414b5"]]
|
2905
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2906
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2907
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2908
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2909
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2910
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2911
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2912
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2913
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:06.007881"], ["updated_at", "2014-10-29 21:07:06.007881"]]
|
2914
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2915
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2916
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "090c7254-32db-47bb-b806-00b47e75090e"]]
|
2917
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2918
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2919
|
-
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
2920
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2921
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2922
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2923
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2924
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2925
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:06.013629"], ["updated_at", "2014-10-29 21:07:06.013629"]]
|
2926
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2927
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2928
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2929
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2930
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2931
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2932
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:07:06.017499"], ["updated_at", "2014-10-29 21:07:06.017499"]]
|
2933
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2934
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2935
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2936
|
-
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
2937
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2938
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2939
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:06.021122"], ["updated_at", "2014-10-29 21:07:06.021122"]]
|
2940
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2941
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
2942
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2943
|
-
[1m[35m (0.0ms)[0m commit transaction
|
2944
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2945
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2946
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2014-10-29 21:07:06.024343"], ["updated_at", "2014-10-29 21:07:06.024343"]]
|
2947
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2948
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2949
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?) [["record_id", 1], ["record_type", "Record"], ["value", "c0309073-a830-4f0c-ae39-999cef68e2ee"]]
|
2950
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2951
|
-
[1m[35mUuids::Uuid Load (0.0ms)[0m SELECT "uuids_uuids".* FROM "uuids_uuids" WHERE "uuids_uuids"."id" = ? LIMIT 1 [["id", 1]]
|
2952
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2953
|
-
[1m[35m (0.1ms)[0m begin transaction
|
2954
|
-
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
2955
|
-
[1m[35m (0.0ms)[0m begin transaction
|
2956
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2957
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "records" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-10-29 21:07:06.029350"], ["updated_at", "2014-10-29 21:07:06.029350"]]
|
2958
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2959
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2960
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "uuids_uuids" ("record_id", "record_type", "value") VALUES (?, ?, ?)[0m [["record_id", 1], ["record_type", "Record"], ["value", "ec00f10c-ecf7-4326-b544-72a50c252c76"]]
|
2961
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2962
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|