obscured_id 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +109 -0
  4. data/Rakefile +38 -0
  5. data/lib/generators/obscured_id/initializer_generator.rb +10 -0
  6. data/lib/generators/obscured_id/migration_generator.rb +22 -0
  7. data/lib/obscured_id/obscured_id.rb +63 -0
  8. data/lib/obscured_id/railtie.rb +26 -0
  9. data/lib/obscured_id/version.rb +3 -0
  10. data/lib/obscured_id.rb +5 -0
  11. data/lib/tasks/obscured_id.rake +18 -0
  12. data/spec/Gemfile +17 -0
  13. data/spec/Gemfile.lock +111 -0
  14. data/spec/MIT-LICENSE +20 -0
  15. data/spec/README.md +2 -0
  16. data/spec/README.rdoc +3 -0
  17. data/spec/Rakefile +38 -0
  18. data/spec/dummy/README.rdoc +261 -0
  19. data/spec/dummy/Rakefile +7 -0
  20. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  21. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  23. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  24. data/spec/dummy/app/models/thing_with_configured_obscured_id.rb +3 -0
  25. data/spec/dummy/app/models/thing_with_obscured_id.rb +3 -0
  26. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  27. data/spec/dummy/config/application.rb +59 -0
  28. data/spec/dummy/config/boot.rb +10 -0
  29. data/spec/dummy/config/database.yml +25 -0
  30. data/spec/dummy/config/environment.rb +5 -0
  31. data/spec/dummy/config/environments/development.rb +37 -0
  32. data/spec/dummy/config/environments/production.rb +67 -0
  33. data/spec/dummy/config/environments/test.rb +37 -0
  34. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/spec/dummy/config/initializers/inflections.rb +15 -0
  36. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  37. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  38. data/spec/dummy/config/initializers/session_store.rb +8 -0
  39. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/spec/dummy/config/locales/en.yml +5 -0
  41. data/spec/dummy/config/routes.rb +58 -0
  42. data/spec/dummy/config.ru +4 -0
  43. data/spec/dummy/db/development.sqlite3 +0 -0
  44. data/spec/dummy/db/migrate/20130507231624_create_thing_with_obscured_ids.rb +10 -0
  45. data/spec/dummy/db/migrate/20130507235114_create_thing_with_configured_obscured_ids.rb +8 -0
  46. data/spec/dummy/db/schema.rb +28 -0
  47. data/spec/dummy/db/test.sqlite3 +0 -0
  48. data/spec/dummy/log/development.log +270 -0
  49. data/spec/dummy/log/test.log +2279 -0
  50. data/spec/dummy/public/404.html +26 -0
  51. data/spec/dummy/public/422.html +26 -0
  52. data/spec/dummy/public/500.html +25 -0
  53. data/spec/dummy/public/favicon.ico +0 -0
  54. data/spec/dummy/script/rails +6 -0
  55. data/spec/models/thing_with_configured_obscured_id_spec.rb +31 -0
  56. data/spec/models/thing_with_obscured_id_spec.rb +72 -0
  57. data/spec/obscured_id.gemspec +23 -0
  58. data/spec/spec_helper.rb +38 -0
  59. metadata +180 -0
@@ -0,0 +1,2279 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+  (0.1ms) begin transaction
6
+  (0.0ms) rollback transaction
7
+  (0.0ms) begin transaction
8
+  (0.0ms) rollback transaction
9
+  (0.0ms) begin transaction
10
+  (0.0ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+  (0.0ms) rollback transaction
13
+  (0.0ms) begin transaction
14
+  (0.0ms) rollback transaction
15
+  (0.0ms) begin transaction
16
+  (0.0ms) rollback transaction
17
+  (0.0ms) begin transaction
18
+  (0.0ms) rollback transaction
19
+ Connecting to database specified by database.yml
20
+  (0.1ms) begin transaction
21
+  (0.1ms) rollback transaction
22
+  (0.0ms) begin transaction
23
+  (0.0ms) rollback transaction
24
+  (0.0ms) begin transaction
25
+  (0.0ms) rollback transaction
26
+  (0.0ms) begin transaction
27
+  (0.0ms) rollback transaction
28
+  (0.0ms) begin transaction
29
+  (0.0ms) rollback transaction
30
+  (0.0ms) begin transaction
31
+  (0.0ms) rollback transaction
32
+  (0.0ms) begin transaction
33
+  (0.0ms) rollback transaction
34
+ Connecting to database specified by database.yml
35
+  (0.0ms) select sqlite_version(*)
36
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
37
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
39
+ Migrating to CreateThingWithIds (20130507231624)
40
+  (0.0ms) begin transaction
41
+  (0.3ms) CREATE TABLE "thing_with_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
42
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130507231624')
43
+  (0.8ms) commit transaction
44
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
45
+ Connecting to database specified by database.yml
46
+  (0.1ms) begin transaction
47
+  (0.0ms) rollback transaction
48
+  (0.0ms) begin transaction
49
+  (0.0ms) rollback transaction
50
+  (0.0ms) begin transaction
51
+  (0.0ms) rollback transaction
52
+  (0.0ms) begin transaction
53
+  (0.0ms) rollback transaction
54
+  (0.0ms) begin transaction
55
+  (0.0ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+  (0.0ms) rollback transaction
58
+  (0.0ms) begin transaction
59
+  (0.0ms) rollback transaction
60
+ Connecting to database specified by database.yml
61
+  (0.1ms) begin transaction
62
+  (0.0ms) rollback transaction
63
+  (0.0ms) begin transaction
64
+  (0.0ms) rollback transaction
65
+  (0.0ms) begin transaction
66
+  (0.0ms) rollback transaction
67
+  (0.0ms) begin transaction
68
+  (0.0ms) rollback transaction
69
+  (0.0ms) begin transaction
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+  (0.0ms) rollback transaction
73
+  (0.0ms) begin transaction
74
+  (0.0ms) rollback transaction
75
+ Connecting to database specified by database.yml
76
+  (0.3ms) select sqlite_version(*)
77
+  (1.1ms) CREATE TABLE "thing_with_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
78
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
79
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
80
+  (0.1ms) SELECT version FROM "schema_migrations"
81
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130507231624')
82
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
83
+ Connecting to database specified by database.yml
84
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
85
+ Migrating to CreateThingWithIds (20130507231624)
86
+ Migrating to CreateThingWithSpecialObscuredIds (20130507232619)
87
+  (0.0ms) select sqlite_version(*)
88
+  (0.0ms) begin transaction
89
+  (0.0ms) rollback transaction
90
+ Connecting to database specified by database.yml
91
+  (0.3ms) select sqlite_version(*)
92
+  (3.0ms) CREATE TABLE "thing_with_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
93
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
94
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
+  (0.1ms) SELECT version FROM "schema_migrations"
96
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130507231624')
97
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
98
+ Connecting to database specified by database.yml
99
+  (0.1ms) begin transaction
100
+  (0.0ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+  (0.0ms) rollback transaction
103
+  (0.0ms) begin transaction
104
+  (0.0ms) rollback transaction
105
+  (0.0ms) begin transaction
106
+  (0.0ms) rollback transaction
107
+  (0.0ms) begin transaction
108
+  (0.0ms) rollback transaction
109
+  (0.0ms) begin transaction
110
+  (0.0ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+  (0.0ms) rollback transaction
113
+ Connecting to database specified by database.yml
114
+ Connecting to database specified by database.yml
115
+ Connecting to database specified by database.yml
116
+ Connecting to database specified by database.yml
117
+ Connecting to database specified by database.yml
118
+  (0.1ms) begin transaction
119
+  (0.0ms) rollback transaction
120
+  (0.0ms) begin transaction
121
+  (0.0ms) rollback transaction
122
+  (0.0ms) begin transaction
123
+  (0.0ms) rollback transaction
124
+ Connecting to database specified by database.yml
125
+ Connecting to database specified by database.yml
126
+  (0.1ms) begin transaction
127
+  (0.0ms) rollback transaction
128
+  (0.0ms) begin transaction
129
+  (0.0ms) rollback transaction
130
+  (0.0ms) begin transaction
131
+  (0.0ms) rollback transaction
132
+  (0.0ms) begin transaction
133
+  (0.0ms) rollback transaction
134
+  (0.0ms) begin transaction
135
+  (0.1ms) rollback transaction
136
+  (0.0ms) begin transaction
137
+  (0.0ms) rollback transaction
138
+  (0.0ms) begin transaction
139
+  (0.0ms) rollback transaction
140
+  (0.0ms) begin transaction
141
+  (0.0ms) rollback transaction
142
+  (0.0ms) begin transaction
143
+  (0.0ms) rollback transaction
144
+  (0.0ms) begin transaction
145
+  (0.0ms) rollback transaction
146
+ Connecting to database specified by database.yml
147
+  (0.0ms) select sqlite_version(*)
148
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
149
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
150
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
151
+ Migrating to CreateThingWithObscuredIds (20130507231624)
152
+  (0.0ms) begin transaction
153
+  (0.3ms) CREATE TABLE "thing_with_obscured_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "obscured_id" varchar(255), "other_id" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
154
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130507231624')
155
+  (0.7ms) commit transaction
156
+ Migrating to CreateThingWithConfiguredObscuredIds (20130507235114)
157
+  (0.0ms) begin transaction
158
+  (0.2ms) CREATE TABLE "thing_with_configured_obscured_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hidden_id" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
159
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130507235114')
160
+  (0.7ms) commit transaction
161
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
162
+ Connecting to database specified by database.yml
163
+  (0.1ms) begin transaction
164
+  (0.0ms) rollback transaction
165
+  (0.0ms) begin transaction
166
+  (0.0ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+  (0.0ms) rollback transaction
169
+  (0.0ms) begin transaction
170
+  (0.0ms) rollback transaction
171
+  (0.0ms) begin transaction
172
+  (0.0ms) SAVEPOINT active_record_1
173
+ SQL (7.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:04:15 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:04:15 UTC +00:00]]
174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
175
+  (0.4ms) rollback transaction
176
+  (0.0ms) begin transaction
177
+  (0.0ms) SAVEPOINT active_record_1
178
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:04:15 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:04:15 UTC +00:00]]
179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
180
+  (0.2ms) rollback transaction
181
+  (0.0ms) begin transaction
182
+  (0.0ms) rollback transaction
183
+  (0.0ms) begin transaction
184
+  (0.0ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+  (0.0ms) rollback transaction
187
+  (0.0ms) begin transaction
188
+  (0.0ms) rollback transaction
189
+ Connecting to database specified by database.yml
190
+  (0.1ms) begin transaction
191
+  (0.0ms) rollback transaction
192
+  (0.0ms) begin transaction
193
+  (0.0ms) rollback transaction
194
+  (0.0ms) begin transaction
195
+  (0.0ms) rollback transaction
196
+  (0.0ms) begin transaction
197
+  (0.0ms) SAVEPOINT active_record_1
198
+ SQL (2.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:04:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:04:39 UTC +00:00]]
199
+  (0.0ms) RELEASE SAVEPOINT active_record_1
200
+  (0.3ms) rollback transaction
201
+  (0.0ms) begin transaction
202
+  (0.0ms) SAVEPOINT active_record_1
203
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:04:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:04:39 UTC +00:00]]
204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
205
+  (0.2ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+  (0.0ms) rollback transaction
208
+  (0.0ms) begin transaction
209
+  (0.0ms) rollback transaction
210
+  (0.0ms) begin transaction
211
+  (0.0ms) rollback transaction
212
+  (0.0ms) begin transaction
213
+  (0.0ms) rollback transaction
214
+  (0.0ms) begin transaction
215
+  (0.0ms) rollback transaction
216
+ Connecting to database specified by database.yml
217
+  (0.1ms) begin transaction
218
+  (0.0ms) rollback transaction
219
+  (0.0ms) begin transaction
220
+  (0.0ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+  (0.0ms) rollback transaction
223
+  (0.0ms) begin transaction
224
+  (0.0ms) rollback transaction
225
+  (0.0ms) begin transaction
226
+  (0.0ms) SAVEPOINT active_record_1
227
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:05:01 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:05:01 UTC +00:00]]
228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
229
+  (1.5ms) rollback transaction
230
+  (0.0ms) begin transaction
231
+  (0.0ms) SAVEPOINT active_record_1
232
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:05:01 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:05:01 UTC +00:00]]
233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
234
+  (0.4ms) rollback transaction
235
+  (0.0ms) begin transaction
236
+  (0.0ms) rollback transaction
237
+  (0.0ms) begin transaction
238
+  (0.0ms) rollback transaction
239
+  (0.0ms) begin transaction
240
+  (0.0ms) rollback transaction
241
+  (0.0ms) begin transaction
242
+  (0.0ms) rollback transaction
243
+ Connecting to database specified by database.yml
244
+  (0.1ms) begin transaction
245
+  (0.0ms) rollback transaction
246
+  (0.0ms) begin transaction
247
+  (0.0ms) rollback transaction
248
+  (0.0ms) begin transaction
249
+  (0.0ms) rollback transaction
250
+  (0.0ms) begin transaction
251
+  (0.0ms) SAVEPOINT active_record_1
252
+ SQL (2.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:06:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:06:53 UTC +00:00]]
253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
254
+  (1.5ms) rollback transaction
255
+  (0.1ms) begin transaction
256
+  (0.0ms) SAVEPOINT active_record_1
257
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:06:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:06:53 UTC +00:00]]
258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
259
+  (0.3ms) rollback transaction
260
+  (0.0ms) begin transaction
261
+  (0.0ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+  (0.0ms) rollback transaction
264
+  (0.0ms) begin transaction
265
+  (0.0ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+  (0.0ms) rollback transaction
268
+  (0.0ms) begin transaction
269
+  (0.0ms) rollback transaction
270
+ Connecting to database specified by database.yml
271
+  (0.1ms) begin transaction
272
+  (0.0ms) rollback transaction
273
+  (0.0ms) begin transaction
274
+  (0.0ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+  (0.0ms) rollback transaction
277
+  (0.0ms) begin transaction
278
+  (0.0ms) SAVEPOINT active_record_1
279
+ SQL (2.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:27:33 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:27:33 UTC +00:00]]
280
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '6663411c805c691ffcdc2538412d084957ef0a71' WHERE "thing_with_obscured_ids"."id" = 1
281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282
+  (0.3ms) rollback transaction
283
+  (0.0ms) begin transaction
284
+  (0.0ms) SAVEPOINT active_record_1
285
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:27:33 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:27:33 UTC +00:00]]
286
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '6663411c805c691ffcdc2538412d084957ef0a71' WHERE "thing_with_obscured_ids"."id" = 1
287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
288
+  (0.3ms) rollback transaction
289
+  (0.0ms) begin transaction
290
+  (0.0ms) rollback transaction
291
+  (0.0ms) begin transaction
292
+  (0.0ms) rollback transaction
293
+  (0.0ms) begin transaction
294
+  (0.0ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+  (0.0ms) rollback transaction
297
+  (0.0ms) begin transaction
298
+  (0.0ms) rollback transaction
299
+ Connecting to database specified by database.yml
300
+  (0.1ms) begin transaction
301
+  (0.0ms) rollback transaction
302
+  (0.0ms) begin transaction
303
+  (0.0ms) rollback transaction
304
+  (0.0ms) begin transaction
305
+  (0.0ms) rollback transaction
306
+  (0.0ms) begin transaction
307
+  (0.0ms) SAVEPOINT active_record_1
308
+ SQL (2.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:01 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:01 UTC +00:00]]
309
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c7135bbf32c73ba431217e908a03fdbbe44e52e5' WHERE "thing_with_obscured_ids"."id" = 1
310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
311
+  (1.8ms) rollback transaction
312
+  (0.0ms) begin transaction
313
+  (0.0ms) SAVEPOINT active_record_1
314
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:01 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:01 UTC +00:00]]
315
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c7135bbf32c73ba431217e908a03fdbbe44e52e5' WHERE "thing_with_obscured_ids"."id" = 1
316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
317
+  (0.4ms) rollback transaction
318
+  (0.0ms) begin transaction
319
+  (0.0ms) SAVEPOINT active_record_1
320
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:01 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:01 UTC +00:00]]
321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
322
+  (0.2ms) rollback transaction
323
+  (0.0ms) begin transaction
324
+  (0.0ms) rollback transaction
325
+  (0.0ms) begin transaction
326
+  (0.0ms) rollback transaction
327
+  (0.0ms) begin transaction
328
+  (0.0ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+  (0.0ms) rollback transaction
331
+ Connecting to database specified by database.yml
332
+  (0.1ms) begin transaction
333
+  (0.0ms) rollback transaction
334
+  (0.0ms) begin transaction
335
+  (0.0ms) rollback transaction
336
+  (0.0ms) begin transaction
337
+  (0.0ms) rollback transaction
338
+  (0.0ms) begin transaction
339
+  (0.0ms) SAVEPOINT active_record_1
340
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:12 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:12 UTC +00:00]]
341
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '5eb0e4bd815408d16cf75edd471044df061a2ba9' WHERE "thing_with_obscured_ids"."id" = 1
342
+  (0.0ms) RELEASE SAVEPOINT active_record_1
343
+  (1.7ms) rollback transaction
344
+  (0.1ms) begin transaction
345
+  (0.0ms) SAVEPOINT active_record_1
346
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:12 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:12 UTC +00:00]]
347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
348
+  (0.4ms) rollback transaction
349
+  (0.0ms) begin transaction
350
+  (0.0ms) SAVEPOINT active_record_1
351
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:12 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:12 UTC +00:00]]
352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
353
+  (0.3ms) rollback transaction
354
+  (0.0ms) begin transaction
355
+  (0.0ms) rollback transaction
356
+  (0.0ms) begin transaction
357
+  (0.0ms) rollback transaction
358
+  (0.0ms) begin transaction
359
+  (0.0ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+  (0.0ms) rollback transaction
362
+ Connecting to database specified by database.yml
363
+  (0.1ms) begin transaction
364
+  (0.0ms) rollback transaction
365
+  (0.0ms) begin transaction
366
+  (0.0ms) rollback transaction
367
+  (0.0ms) begin transaction
368
+  (0.0ms) rollback transaction
369
+  (0.0ms) begin transaction
370
+  (0.0ms) SAVEPOINT active_record_1
371
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:25 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:25 UTC +00:00]]
372
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '72cb93bef68b149070baaffb2ce10c686486ee42' WHERE "thing_with_obscured_ids"."id" = 1
373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
374
+  (1.8ms) rollback transaction
375
+  (0.1ms) begin transaction
376
+  (0.0ms) SAVEPOINT active_record_1
377
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:25 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:25 UTC +00:00]]
378
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '72cb93bef68b149070baaffb2ce10c686486ee42' WHERE "thing_with_obscured_ids"."id" = 1
379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
380
+  (0.4ms) rollback transaction
381
+  (0.0ms) begin transaction
382
+  (0.0ms) SAVEPOINT active_record_1
383
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:28:25 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:28:25 UTC +00:00]]
384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
385
+  (0.2ms) rollback transaction
386
+  (0.0ms) begin transaction
387
+  (0.0ms) rollback transaction
388
+  (0.0ms) begin transaction
389
+  (0.0ms) rollback transaction
390
+  (0.0ms) begin transaction
391
+  (0.0ms) rollback transaction
392
+  (0.0ms) begin transaction
393
+  (0.0ms) rollback transaction
394
+ Connecting to database specified by database.yml
395
+ Connecting to database specified by database.yml
396
+  (0.1ms) begin transaction
397
+  (0.0ms) rollback transaction
398
+  (0.0ms) begin transaction
399
+  (0.0ms) rollback transaction
400
+  (0.0ms) begin transaction
401
+  (0.0ms) SAVEPOINT active_record_1
402
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:33:58 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:33:58 UTC +00:00]]
403
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'f1387bad12e66a96c381dc6aaf6db32ac5ecc814' WHERE "thing_with_obscured_ids"."id" = 1
404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
405
+  (0.4ms) rollback transaction
406
+  (0.4ms) begin transaction
407
+  (0.0ms) SAVEPOINT active_record_1
408
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:33:58 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:33:58 UTC +00:00]]
409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
410
+  (0.4ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+  (0.0ms) SAVEPOINT active_record_1
413
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:33:58 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:33:58 UTC +00:00]]
414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
415
+  (0.3ms) rollback transaction
416
+  (0.0ms) begin transaction
417
+  (0.0ms) SAVEPOINT active_record_1
418
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:33:58 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:33:58 UTC +00:00]]
419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
420
+  (0.3ms) rollback transaction
421
+  (0.0ms) begin transaction
422
+  (0.0ms) rollback transaction
423
+  (0.0ms) begin transaction
424
+  (0.0ms) rollback transaction
425
+  (0.0ms) begin transaction
426
+  (0.0ms) rollback transaction
427
+  (0.0ms) begin transaction
428
+  (0.0ms) rollback transaction
429
+ Connecting to database specified by database.yml
430
+  (0.1ms) begin transaction
431
+  (0.0ms) rollback transaction
432
+  (0.0ms) begin transaction
433
+  (0.0ms) rollback transaction
434
+  (0.0ms) begin transaction
435
+  (0.0ms) rollback transaction
436
+  (0.0ms) begin transaction
437
+  (0.0ms) SAVEPOINT active_record_1
438
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:34:33 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:34:33 UTC +00:00]]
439
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cbfb84245b9901e9568cd28fed1389cbb2ae6245' WHERE "thing_with_obscured_ids"."id" = 1
440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
441
+  (1.3ms) rollback transaction
442
+  (0.1ms) begin transaction
443
+  (0.0ms) SAVEPOINT active_record_1
444
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:34:33 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:34:33 UTC +00:00]]
445
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cbfb84245b9901e9568cd28fed1389cbb2ae6245' WHERE "thing_with_obscured_ids"."id" = 1
446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
447
+  (0.3ms) rollback transaction
448
+  (0.0ms) begin transaction
449
+  (0.0ms) SAVEPOINT active_record_1
450
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:34:33 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:34:33 UTC +00:00]]
451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
452
+  (0.2ms) rollback transaction
453
+  (0.0ms) begin transaction
454
+  (0.0ms) rollback transaction
455
+  (0.0ms) begin transaction
456
+  (0.0ms) SAVEPOINT active_record_1
457
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 01:34:33 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 01:34:33 UTC +00:00]]
458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
459
+  (0.4ms) rollback transaction
460
+  (0.0ms) begin transaction
461
+  (0.4ms) rollback transaction
462
+  (0.0ms) begin transaction
463
+  (0.0ms) rollback transaction
464
+ Connecting to database specified by database.yml
465
+  (0.1ms) begin transaction
466
+  (0.0ms) rollback transaction
467
+  (0.0ms) begin transaction
468
+  (0.0ms) rollback transaction
469
+  (0.0ms) begin transaction
470
+  (0.0ms) rollback transaction
471
+  (0.0ms) begin transaction
472
+  (0.0ms) SAVEPOINT active_record_1
473
+ SQL (5.7ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:21:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:21:17 UTC +00:00]]
474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
475
+  (0.4ms) rollback transaction
476
+  (0.0ms) begin transaction
477
+  (0.0ms) SAVEPOINT active_record_1
478
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:21:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:21:17 UTC +00:00]]
479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
480
+  (0.4ms) rollback transaction
481
+  (0.0ms) begin transaction
482
+  (0.0ms) SAVEPOINT active_record_1
483
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:21:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:21:17 UTC +00:00]]
484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
485
+  (0.4ms) rollback transaction
486
+  (0.0ms) begin transaction
487
+  (0.0ms) rollback transaction
488
+  (0.0ms) begin transaction
489
+  (0.0ms) rollback transaction
490
+  (0.0ms) begin transaction
491
+  (0.0ms) rollback transaction
492
+  (0.0ms) begin transaction
493
+  (0.1ms) SAVEPOINT active_record_1
494
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:21:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:21:17 UTC +00:00]]
495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
496
+  (0.3ms) rollback transaction
497
+ Connecting to database specified by database.yml
498
+  (0.3ms) select sqlite_version(*)
499
+  (3.0ms) CREATE TABLE "thing_with_configured_obscured_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hidden_id" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
500
+  (1.1ms) CREATE TABLE "thing_with_obscured_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "obscured_id" varchar(255), "other_id" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
501
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
502
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
503
+  (0.1ms) SELECT version FROM "schema_migrations"
504
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130507235114')
505
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130507231624')
506
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
507
+ Connecting to database specified by database.yml
508
+ Connecting to database specified by database.yml
509
+  (0.1ms) begin transaction
510
+  (0.0ms) rollback transaction
511
+  (0.0ms) begin transaction
512
+  (0.0ms) SAVEPOINT active_record_1
513
+ SQL (4.6ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
514
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '0353d3f6b79976c14e07da30af61a3d6f22a1868' WHERE "thing_with_obscured_ids"."id" = 1
515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
516
+  (0.4ms) rollback transaction
517
+  (0.0ms) begin transaction
518
+  (0.0ms) rollback transaction
519
+  (0.0ms) begin transaction
520
+  (0.0ms) SAVEPOINT active_record_1
521
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
522
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '0353d3f6b79976c14e07da30af61a3d6f22a1868' WHERE "thing_with_obscured_ids"."id" = 1
523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
524
+  (0.4ms) rollback transaction
525
+  (0.0ms) begin transaction
526
+  (0.0ms) SAVEPOINT active_record_1
527
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
528
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '0353d3f6b79976c14e07da30af61a3d6f22a1868' WHERE "thing_with_obscured_ids"."id" = 1
529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
530
+  (0.3ms) rollback transaction
531
+  (0.0ms) begin transaction
532
+  (0.0ms) SAVEPOINT active_record_1
533
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
535
+  (0.0ms) SAVEPOINT active_record_1
536
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
538
+  (0.3ms) rollback transaction
539
+  (0.0ms) begin transaction
540
+  (0.0ms) SAVEPOINT active_record_1
541
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
543
+  (0.0ms) SAVEPOINT active_record_1
544
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
546
+  (0.0ms) SAVEPOINT active_record_1
547
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
549
+  (0.0ms) SAVEPOINT active_record_1
550
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
552
+  (0.0ms) SAVEPOINT active_record_1
553
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:51:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:51:39 UTC +00:00]]
554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
555
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
556
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids"
557
+  (0.4ms) rollback transaction
558
+  (0.0ms) begin transaction
559
+  (0.0ms) rollback transaction
560
+  (0.0ms) begin transaction
561
+  (0.0ms) rollback transaction
562
+  (0.0ms) begin transaction
563
+  (0.0ms) rollback transaction
564
+  (0.0ms) begin transaction
565
+  (0.0ms) rollback transaction
566
+ Connecting to database specified by database.yml
567
+  (0.1ms) begin transaction
568
+  (0.0ms) rollback transaction
569
+  (0.0ms) begin transaction
570
+  (0.0ms) rollback transaction
571
+  (0.0ms) begin transaction
572
+  (0.0ms) rollback transaction
573
+  (0.0ms) begin transaction
574
+  (0.0ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+  (0.0ms) SAVEPOINT active_record_1
577
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
578
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '2ac00ce7f19f13a1b9324e1292ccaeedcc59987a' WHERE "thing_with_obscured_ids"."id" = 1
579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
580
+  (2.2ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+  (0.0ms) SAVEPOINT active_record_1
583
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
584
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '2ac00ce7f19f13a1b9324e1292ccaeedcc59987a' WHERE "thing_with_obscured_ids"."id" = 1
585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
586
+  (0.4ms) rollback transaction
587
+  (0.0ms) begin transaction
588
+  (0.0ms) SAVEPOINT active_record_1
589
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
591
+  (0.0ms) SAVEPOINT active_record_1
592
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
593
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cca962b9cb18768b5bdb228174d062cb907eece7' WHERE "thing_with_obscured_ids"."id" = 2
594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
595
+  (0.2ms) rollback transaction
596
+  (0.0ms) begin transaction
597
+  (0.0ms) SAVEPOINT active_record_1
598
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
600
+  (0.0ms) SAVEPOINT active_record_1
601
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
603
+  (0.0ms) SAVEPOINT active_record_1
604
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
606
+  (0.0ms) SAVEPOINT active_record_1
607
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
609
+  (0.0ms) SAVEPOINT active_record_1
610
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
612
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
613
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
614
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
615
+  (0.4ms) rollback transaction
616
+  (0.0ms) begin transaction
617
+  (0.0ms) SAVEPOINT active_record_1
618
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:52:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:52:45 UTC +00:00]]
619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
620
+  (0.4ms) rollback transaction
621
+  (0.0ms) begin transaction
622
+  (0.0ms) rollback transaction
623
+  (0.0ms) begin transaction
624
+  (0.0ms) rollback transaction
625
+ Connecting to database specified by database.yml
626
+  (0.1ms) begin transaction
627
+  (0.0ms) SAVEPOINT active_record_1
628
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
629
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '3cc3a2589e4a9b9ed2c505ba7490c5c9c985c32c' WHERE "thing_with_obscured_ids"."id" = 1
630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
631
+  (1.6ms) rollback transaction
632
+  (0.1ms) begin transaction
633
+  (0.0ms) SAVEPOINT active_record_1
634
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
635
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '3cc3a2589e4a9b9ed2c505ba7490c5c9c985c32c' WHERE "thing_with_obscured_ids"."id" = 1
636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
637
+  (0.3ms) rollback transaction
638
+  (0.1ms) begin transaction
639
+  (0.0ms) SAVEPOINT active_record_1
640
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
641
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '3cc3a2589e4a9b9ed2c505ba7490c5c9c985c32c' WHERE "thing_with_obscured_ids"."id" = 1
642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
643
+  (0.3ms) rollback transaction
644
+  (0.0ms) begin transaction
645
+  (0.0ms) SAVEPOINT active_record_1
646
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
648
+  (0.0ms) SAVEPOINT active_record_1
649
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
650
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '0014ae0919c69e59b9ae11d9bb59907540ae6970' WHERE "thing_with_obscured_ids"."id" = 2
651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
652
+  (0.4ms) rollback transaction
653
+  (0.0ms) begin transaction
654
+  (0.0ms) SAVEPOINT active_record_1
655
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
656
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '3cc3a2589e4a9b9ed2c505ba7490c5c9c985c32c' WHERE "thing_with_obscured_ids"."id" = 1
657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
658
+  (0.3ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+  (0.0ms) SAVEPOINT active_record_1
661
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
663
+  (0.0ms) SAVEPOINT active_record_1
664
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
666
+  (0.0ms) SAVEPOINT active_record_1
667
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
669
+  (0.0ms) SAVEPOINT active_record_1
670
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
672
+  (0.0ms) SAVEPOINT active_record_1
673
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:55:39 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:55:39 UTC +00:00]]
674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
675
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
676
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
677
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
678
+  (0.4ms) rollback transaction
679
+  (0.0ms) begin transaction
680
+  (0.0ms) rollback transaction
681
+  (0.0ms) begin transaction
682
+  (0.0ms) rollback transaction
683
+  (0.0ms) begin transaction
684
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
686
+  (0.0ms) rollback transaction
687
+ Connecting to database specified by database.yml
688
+  (0.1ms) begin transaction
689
+  (0.0ms) rollback transaction
690
+  (0.0ms) begin transaction
691
+  (0.0ms) rollback transaction
692
+  (0.0ms) begin transaction
693
+  (0.0ms) rollback transaction
694
+  (0.0ms) begin transaction
695
+  (0.0ms) rollback transaction
696
+  (0.0ms) begin transaction
697
+  (0.0ms) SAVEPOINT active_record_1
698
+ SQL (2.0ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
699
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '5ad651e8cbf552ad44f92a8e7952b4fa7d396483' WHERE "thing_with_obscured_ids"."id" = 1
700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
701
+  (2.3ms) rollback transaction
702
+  (0.1ms) begin transaction
703
+  (0.0ms) SAVEPOINT active_record_1
704
+ SQL (0.5ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
705
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '5ad651e8cbf552ad44f92a8e7952b4fa7d396483' WHERE "thing_with_obscured_ids"."id" = 1
706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
707
+  (0.4ms) rollback transaction
708
+  (0.0ms) begin transaction
709
+  (0.0ms) SAVEPOINT active_record_1
710
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
712
+  (0.0ms) SAVEPOINT active_record_1
713
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
714
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '2d231d5de9b65e795eb56acb9ced3bc6d9d209e6' WHERE "thing_with_obscured_ids"."id" = 2
715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
716
+  (0.4ms) rollback transaction
717
+  (0.0ms) begin transaction
718
+  (0.0ms) SAVEPOINT active_record_1
719
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
721
+  (0.0ms) SAVEPOINT active_record_1
722
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
724
+  (0.0ms) SAVEPOINT active_record_1
725
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
727
+  (0.0ms) SAVEPOINT active_record_1
728
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
729
+  (0.0ms) RELEASE SAVEPOINT active_record_1
730
+  (0.0ms) SAVEPOINT active_record_1
731
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
733
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
734
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
735
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
736
+  (0.3ms) rollback transaction
737
+  (0.0ms) begin transaction
738
+  (0.0ms) SAVEPOINT active_record_1
739
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
741
+  (0.2ms) rollback transaction
742
+  (0.0ms) begin transaction
743
+  (0.0ms) SAVEPOINT active_record_1
744
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 17:56:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 17:56:45 UTC +00:00]]
745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
746
+  (0.4ms) rollback transaction
747
+ Connecting to database specified by database.yml
748
+  (0.1ms) begin transaction
749
+  (0.0ms) rollback transaction
750
+  (0.0ms) begin transaction
751
+  (0.0ms) rollback transaction
752
+  (0.0ms) begin transaction
753
+  (0.0ms) rollback transaction
754
+  (0.0ms) begin transaction
755
+  (0.0ms) rollback transaction
756
+  (0.0ms) begin transaction
757
+  (0.0ms) SAVEPOINT active_record_1
758
+ SQL (1.8ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
760
+  (1.5ms) rollback transaction
761
+  (0.0ms) begin transaction
762
+  (0.0ms) SAVEPOINT active_record_1
763
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
765
+  (0.4ms) rollback transaction
766
+  (0.0ms) begin transaction
767
+  (0.0ms) SAVEPOINT active_record_1
768
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
770
+  (0.0ms) SAVEPOINT active_record_1
771
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
772
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "" = '996cb06b7feef7d70ed31f20fc5008ff70d82778' WHERE "thing_with_obscured_ids"."id" = 2
773
+ SQLite3::SQLException: no such column: : UPDATE "thing_with_obscured_ids" SET "" = '996cb06b7feef7d70ed31f20fc5008ff70d82778' WHERE "thing_with_obscured_ids"."id" = 2
774
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
775
+  (0.4ms) rollback transaction
776
+  (0.0ms) begin transaction
777
+  (0.0ms) SAVEPOINT active_record_1
778
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
780
+  (0.0ms) SAVEPOINT active_record_1
781
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
783
+  (0.0ms) SAVEPOINT active_record_1
784
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
786
+  (0.0ms) SAVEPOINT active_record_1
787
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
789
+  (0.0ms) SAVEPOINT active_record_1
790
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
792
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
793
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
794
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
795
+  (0.4ms) rollback transaction
796
+  (0.0ms) begin transaction
797
+  (0.0ms) SAVEPOINT active_record_1
798
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
799
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "" = 'bb4af70560003598b374e07ee41771ae3d5dc20b' WHERE "thing_with_obscured_ids"."id" = 1
800
+ SQLite3::SQLException: no such column: : UPDATE "thing_with_obscured_ids" SET "" = 'bb4af70560003598b374e07ee41771ae3d5dc20b' WHERE "thing_with_obscured_ids"."id" = 1
801
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
802
+  (0.3ms) rollback transaction
803
+  (0.0ms) begin transaction
804
+  (0.0ms) SAVEPOINT active_record_1
805
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:34 UTC +00:00]]
806
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '25e6c4b3ca149f5620c4e1d46835b26870c268d7' WHERE "thing_with_obscured_ids"."id" = 1
807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
808
+  (0.4ms) rollback transaction
809
+ Connecting to database specified by database.yml
810
+  (0.1ms) begin transaction
811
+  (0.0ms) rollback transaction
812
+  (0.0ms) begin transaction
813
+  (0.0ms) rollback transaction
814
+  (0.0ms) begin transaction
815
+  (0.0ms) rollback transaction
816
+  (0.0ms) begin transaction
817
+  (0.0ms) rollback transaction
818
+  (0.0ms) begin transaction
819
+  (0.0ms) SAVEPOINT active_record_1
820
+ SQL (2.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
822
+  (2.2ms) rollback transaction
823
+  (0.0ms) begin transaction
824
+  (0.0ms) SAVEPOINT active_record_1
825
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
827
+  (0.3ms) rollback transaction
828
+  (0.0ms) begin transaction
829
+  (0.0ms) SAVEPOINT active_record_1
830
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
832
+  (0.0ms) SAVEPOINT active_record_1
833
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
834
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "" = 'ca0bea026c7113aafe6ba3657796622493aee2ab' WHERE "thing_with_obscured_ids"."id" = 2
835
+ SQLite3::SQLException: no such column: : UPDATE "thing_with_obscured_ids" SET "" = 'ca0bea026c7113aafe6ba3657796622493aee2ab' WHERE "thing_with_obscured_ids"."id" = 2
836
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
837
+  (0.4ms) rollback transaction
838
+  (0.0ms) begin transaction
839
+  (0.0ms) SAVEPOINT active_record_1
840
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
842
+  (0.0ms) SAVEPOINT active_record_1
843
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
845
+  (0.0ms) SAVEPOINT active_record_1
846
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
848
+  (0.0ms) SAVEPOINT active_record_1
849
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
851
+  (0.0ms) SAVEPOINT active_record_1
852
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:08:53 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:08:53 UTC +00:00]]
853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
854
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
855
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
856
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
857
+  (0.4ms) rollback transaction
858
+  (0.0ms) begin transaction
859
+  (0.0ms) rollback transaction
860
+  (0.0ms) begin transaction
861
+  (0.0ms) rollback transaction
862
+ Connecting to database specified by database.yml
863
+  (0.1ms) begin transaction
864
+  (0.0ms) rollback transaction
865
+  (0.0ms) begin transaction
866
+  (0.0ms) rollback transaction
867
+  (0.0ms) begin transaction
868
+  (0.0ms) rollback transaction
869
+  (0.0ms) begin transaction
870
+  (0.0ms) rollback transaction
871
+  (0.0ms) begin transaction
872
+  (0.0ms) SAVEPOINT active_record_1
873
+ SQL (2.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
874
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '62cf0c92d9576a10dd6c5465d6e98e637830c494' WHERE "thing_with_obscured_ids"."id" = 1
875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
876
+  (1.8ms) rollback transaction
877
+  (0.1ms) begin transaction
878
+  (0.0ms) SAVEPOINT active_record_1
879
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
880
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '62cf0c92d9576a10dd6c5465d6e98e637830c494' WHERE "thing_with_obscured_ids"."id" = 1
881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
882
+  (0.4ms) rollback transaction
883
+  (0.0ms) begin transaction
884
+  (0.0ms) SAVEPOINT active_record_1
885
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
887
+  (0.0ms) SAVEPOINT active_record_1
888
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
889
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'a359b86b377d2fb60507731525a02e82e3a19593' WHERE "thing_with_obscured_ids"."id" = 2
890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
891
+  (0.3ms) rollback transaction
892
+  (0.0ms) begin transaction
893
+  (0.0ms) SAVEPOINT active_record_1
894
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
896
+  (0.0ms) SAVEPOINT active_record_1
897
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
899
+  (0.0ms) SAVEPOINT active_record_1
900
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
902
+  (0.0ms) SAVEPOINT active_record_1
903
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
905
+  (0.0ms) SAVEPOINT active_record_1
906
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:09 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:09 UTC +00:00]]
907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
908
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
909
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
910
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
911
+  (0.4ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+  (0.0ms) rollback transaction
914
+  (0.0ms) begin transaction
915
+  (0.0ms) rollback transaction
916
+ Connecting to database specified by database.yml
917
+  (0.1ms) begin transaction
918
+  (0.0ms) rollback transaction
919
+  (0.0ms) begin transaction
920
+  (0.0ms) rollback transaction
921
+  (0.0ms) begin transaction
922
+  (0.0ms) rollback transaction
923
+  (0.0ms) begin transaction
924
+  (0.0ms) rollback transaction
925
+  (0.0ms) begin transaction
926
+  (0.0ms) SAVEPOINT active_record_1
927
+ SQL (2.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
928
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '08736458d75b4fd3a7a07ee224363c2d7d1b1f1c' WHERE "thing_with_obscured_ids"."id" = 1
929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
930
+  (2.2ms) rollback transaction
931
+  (0.1ms) begin transaction
932
+  (0.0ms) SAVEPOINT active_record_1
933
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
934
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '08736458d75b4fd3a7a07ee224363c2d7d1b1f1c' WHERE "thing_with_obscured_ids"."id" = 1
935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
936
+  (0.3ms) rollback transaction
937
+  (0.0ms) begin transaction
938
+  (0.0ms) SAVEPOINT active_record_1
939
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
941
+  (0.0ms) SAVEPOINT active_record_1
942
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
943
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'fcb2d5b58abfda2686be22fb5534522599f389e8' WHERE "thing_with_obscured_ids"."id" = 2
944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
945
+  (0.2ms) rollback transaction
946
+  (0.0ms) begin transaction
947
+  (0.0ms) SAVEPOINT active_record_1
948
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
950
+  (0.0ms) SAVEPOINT active_record_1
951
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
953
+  (0.0ms) SAVEPOINT active_record_1
954
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
956
+  (0.0ms) SAVEPOINT active_record_1
957
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
959
+  (0.0ms) SAVEPOINT active_record_1
960
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
962
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
963
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
964
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
965
+  (0.3ms) rollback transaction
966
+  (0.0ms) begin transaction
967
+  (0.0ms) SAVEPOINT active_record_1
968
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
969
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '08736458d75b4fd3a7a07ee224363c2d7d1b1f1c' WHERE "thing_with_obscured_ids"."id" = 1
970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
971
+  (0.2ms) rollback transaction
972
+  (0.0ms) begin transaction
973
+  (0.0ms) SAVEPOINT active_record_1
974
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:09:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:09:18 UTC +00:00]]
975
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '77ab34594d869f59d4739f1d5eb28c6a09d5a384' WHERE "thing_with_obscured_ids"."id" = 1
976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
977
+  (0.3ms) rollback transaction
978
+ Connecting to database specified by database.yml
979
+  (0.1ms) begin transaction
980
+  (0.0ms) SAVEPOINT active_record_1
981
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
982
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '123cadec0028afd55d70772fcd6b4ed3c440553a' WHERE "thing_with_obscured_ids"."id" = 1
983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
984
+  (2.3ms) rollback transaction
985
+  (0.0ms) begin transaction
986
+  (0.0ms) SAVEPOINT active_record_1
987
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
988
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '123cadec0028afd55d70772fcd6b4ed3c440553a' WHERE "thing_with_obscured_ids"."id" = 1
989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
990
+  (0.3ms) rollback transaction
991
+  (0.0ms) begin transaction
992
+  (0.0ms) SAVEPOINT active_record_1
993
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
994
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '123cadec0028afd55d70772fcd6b4ed3c440553a' WHERE "thing_with_obscured_ids"."id" = 1
995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
996
+  (0.2ms) rollback transaction
997
+  (0.0ms) begin transaction
998
+  (0.0ms) SAVEPOINT active_record_1
999
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1001
+  (0.0ms) SAVEPOINT active_record_1
1002
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1003
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '9211380aa5c090e9ae399aaf2e9d19b9d5906c64' WHERE "thing_with_obscured_ids"."id" = 2
1004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1005
+  (0.2ms) rollback transaction
1006
+  (0.0ms) begin transaction
1007
+  (0.0ms) SAVEPOINT active_record_1
1008
+ SQL (0.5ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1009
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '123cadec0028afd55d70772fcd6b4ed3c440553a' WHERE "thing_with_obscured_ids"."id" = 1
1010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1011
+  (0.5ms) rollback transaction
1012
+  (0.0ms) begin transaction
1013
+  (0.0ms) SAVEPOINT active_record_1
1014
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1016
+  (0.0ms) SAVEPOINT active_record_1
1017
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1019
+  (0.0ms) SAVEPOINT active_record_1
1020
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1022
+  (0.0ms) SAVEPOINT active_record_1
1023
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1025
+  (0.0ms) SAVEPOINT active_record_1
1026
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:10:00 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:10:00 UTC +00:00]]
1027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1028
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1029
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1030
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1031
+  (0.3ms) rollback transaction
1032
+  (0.0ms) begin transaction
1033
+  (0.0ms) rollback transaction
1034
+  (0.0ms) begin transaction
1035
+  (0.0ms) rollback transaction
1036
+  (0.0ms) begin transaction
1037
+  (0.0ms) rollback transaction
1038
+  (0.0ms) begin transaction
1039
+  (0.0ms) rollback transaction
1040
+ Connecting to database specified by database.yml
1041
+  (0.1ms) begin transaction
1042
+  (0.0ms) rollback transaction
1043
+  (0.0ms) begin transaction
1044
+  (0.0ms) rollback transaction
1045
+  (0.0ms) begin transaction
1046
+  (0.0ms) rollback transaction
1047
+  (0.0ms) begin transaction
1048
+  (0.0ms) rollback transaction
1049
+  (0.0ms) begin transaction
1050
+  (0.0ms) SAVEPOINT active_record_1
1051
+ SQL (2.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1052
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '537b511cb427464eefc9e023aaa9f51fcfb72920' WHERE "thing_with_obscured_ids"."id" = 1
1053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1054
+  (0.4ms) rollback transaction
1055
+  (0.0ms) begin transaction
1056
+  (0.0ms) SAVEPOINT active_record_1
1057
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1058
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '537b511cb427464eefc9e023aaa9f51fcfb72920' WHERE "thing_with_obscured_ids"."id" = 1
1059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1060
+  (0.4ms) rollback transaction
1061
+  (0.0ms) begin transaction
1062
+  (0.0ms) SAVEPOINT active_record_1
1063
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1065
+  (0.0ms) SAVEPOINT active_record_1
1066
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1067
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c1a9e07a55401afc36d9f4d8c1eb05aa43f073bc' WHERE "thing_with_obscured_ids"."id" = 2
1068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1069
+  (0.3ms) rollback transaction
1070
+  (0.0ms) begin transaction
1071
+  (0.0ms) SAVEPOINT active_record_1
1072
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1074
+  (0.0ms) SAVEPOINT active_record_1
1075
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077
+  (0.0ms) SAVEPOINT active_record_1
1078
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1080
+  (0.0ms) SAVEPOINT active_record_1
1081
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1083
+  (0.0ms) SAVEPOINT active_record_1
1084
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1086
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1087
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1088
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1089
+  (0.4ms) rollback transaction
1090
+  (0.0ms) begin transaction
1091
+  (0.0ms) SAVEPOINT active_record_1
1092
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1093
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '4c8e7a9cc37ec938d4cd33e3a1c03c8037a74672' WHERE "thing_with_obscured_ids"."id" = 1
1094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1095
+  (0.3ms) rollback transaction
1096
+  (0.0ms) begin transaction
1097
+  (0.0ms) SAVEPOINT active_record_1
1098
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:27:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:27:06 UTC +00:00]]
1099
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '27a668a1f5ce2de902e797e764fdf0e277b7128a' WHERE "thing_with_obscured_ids"."id" = 1
1100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1101
+  (0.4ms) rollback transaction
1102
+ Connecting to database specified by database.yml
1103
+  (0.1ms) begin transaction
1104
+  (0.0ms) rollback transaction
1105
+  (0.0ms) begin transaction
1106
+  (0.0ms) rollback transaction
1107
+  (0.0ms) begin transaction
1108
+  (0.0ms) rollback transaction
1109
+  (0.0ms) begin transaction
1110
+  (0.0ms) rollback transaction
1111
+  (0.0ms) begin transaction
1112
+  (0.0ms) SAVEPOINT active_record_1
1113
+ SQL (2.0ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1115
+  (0.0ms) SAVEPOINT active_record_1
1116
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1117
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c63ab17cb9a7d4e2e6bbee256bad7fc4645f33ef' WHERE "thing_with_obscured_ids"."id" = 2
1118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1119
+  (1.8ms) rollback transaction
1120
+  (0.1ms) begin transaction
1121
+  (0.0ms) SAVEPOINT active_record_1
1122
+ SQL (0.5ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1123
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'e10770f6dca444ebfeffb14a543cbea3396d8597' WHERE "thing_with_obscured_ids"."id" = 1
1124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1125
+  (0.3ms) rollback transaction
1126
+  (0.0ms) begin transaction
1127
+  (0.0ms) SAVEPOINT active_record_1
1128
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1129
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'e10770f6dca444ebfeffb14a543cbea3396d8597' WHERE "thing_with_obscured_ids"."id" = 1
1130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1131
+  (0.3ms) rollback transaction
1132
+  (0.0ms) begin transaction
1133
+  (0.0ms) SAVEPOINT active_record_1
1134
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1136
+  (0.0ms) SAVEPOINT active_record_1
1137
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1139
+  (0.0ms) SAVEPOINT active_record_1
1140
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1142
+  (0.0ms) SAVEPOINT active_record_1
1143
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1145
+  (0.0ms) SAVEPOINT active_record_1
1146
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1148
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1149
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1150
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1151
+  (0.4ms) rollback transaction
1152
+  (0.0ms) begin transaction
1153
+  (0.0ms) SAVEPOINT active_record_1
1154
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1155
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '433a77b4dd9634c349271f637f09df464582fa18' WHERE "thing_with_obscured_ids"."id" = 1
1156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1157
+  (0.2ms) rollback transaction
1158
+  (0.0ms) begin transaction
1159
+  (0.0ms) SAVEPOINT active_record_1
1160
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:32:06 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:32:06 UTC +00:00]]
1161
+ SQL (0.4ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '7fa1c6e364cf0ffcac2818ea351c17abb726afaf' WHERE "thing_with_obscured_ids"."id" = 1
1162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1163
+  (0.4ms) rollback transaction
1164
+ Connecting to database specified by database.yml
1165
+  (0.0ms) begin transaction
1166
+ SQL (2.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1167
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'b1fb43f347ccfc0587e978a9021c3323a186762c' WHERE "thing_with_obscured_ids"."id" = 1
1168
+  (2.6ms) commit transaction
1169
+  (0.0ms) begin transaction
1170
+  (0.0ms) rollback transaction
1171
+  (0.0ms) begin transaction
1172
+  (0.0ms) rollback transaction
1173
+  (0.0ms) begin transaction
1174
+  (0.0ms) SAVEPOINT active_record_1
1175
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1177
+  (0.0ms) SAVEPOINT active_record_1
1178
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1179
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '60a00ac930716475cdb3af8e8a65667156ce67b3' WHERE "thing_with_obscured_ids"."id" = 3
1180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1181
+  (0.3ms) rollback transaction
1182
+  (0.0ms) begin transaction
1183
+  (0.0ms) SAVEPOINT active_record_1
1184
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1185
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '6d07e114078cbf4bd9580230cbe32f70f019ba0c' WHERE "thing_with_obscured_ids"."id" = 2
1186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1187
+  (0.3ms) rollback transaction
1188
+  (0.0ms) begin transaction
1189
+  (0.0ms) SAVEPOINT active_record_1
1190
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1191
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '6d07e114078cbf4bd9580230cbe32f70f019ba0c' WHERE "thing_with_obscured_ids"."id" = 2
1192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1193
+  (0.3ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+  (0.0ms) SAVEPOINT active_record_1
1196
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1198
+  (0.0ms) SAVEPOINT active_record_1
1199
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1201
+  (0.0ms) SAVEPOINT active_record_1
1202
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1204
+  (0.0ms) SAVEPOINT active_record_1
1205
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1207
+  (0.0ms) SAVEPOINT active_record_1
1208
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:33:23 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:33:23 UTC +00:00]]
1209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1210
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1211
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1212
+  (0.4ms) rollback transaction
1213
+  (0.0ms) begin transaction
1214
+  (0.0ms) rollback transaction
1215
+  (0.0ms) begin transaction
1216
+  (0.0ms) rollback transaction
1217
+  (0.0ms) begin transaction
1218
+  (0.0ms) rollback transaction
1219
+  (0.0ms) begin transaction
1220
+  (0.0ms) rollback transaction
1221
+ Connecting to database specified by database.yml
1222
+  (0.1ms) begin transaction
1223
+  (0.0ms) rollback transaction
1224
+  (0.0ms) begin transaction
1225
+  (0.0ms) rollback transaction
1226
+  (0.0ms) begin transaction
1227
+  (0.0ms) rollback transaction
1228
+  (0.0ms) begin transaction
1229
+  (0.0ms) rollback transaction
1230
+  (0.0ms) begin transaction
1231
+  (0.0ms) SAVEPOINT active_record_1
1232
+ SQL (2.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1233
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'b7e69f54b53789cf12bd99ceb302e796c09892b9' WHERE "thing_with_obscured_ids"."id" = 2
1234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1235
+  (1.5ms) rollback transaction
1236
+  (0.0ms) begin transaction
1237
+  (0.0ms) SAVEPOINT active_record_1
1238
+ SQL (0.5ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1239
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'b7e69f54b53789cf12bd99ceb302e796c09892b9' WHERE "thing_with_obscured_ids"."id" = 2
1240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1241
+  (0.3ms) rollback transaction
1242
+  (0.0ms) begin transaction
1243
+  (0.0ms) SAVEPOINT active_record_1
1244
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1246
+  (0.0ms) SAVEPOINT active_record_1
1247
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1248
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'ce802e3caf66199553a9332d8475e86679bfb353' WHERE "thing_with_obscured_ids"."id" = 3
1249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1250
+  (0.3ms) rollback transaction
1251
+  (0.0ms) begin transaction
1252
+  (0.0ms) SAVEPOINT active_record_1
1253
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1255
+  (0.0ms) SAVEPOINT active_record_1
1256
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1258
+  (0.0ms) SAVEPOINT active_record_1
1259
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1261
+  (0.0ms) SAVEPOINT active_record_1
1262
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1264
+  (0.0ms) SAVEPOINT active_record_1
1265
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1267
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1268
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1269
+  (0.4ms) rollback transaction
1270
+  (0.0ms) begin transaction
1271
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:02 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:02 UTC +00:00]]
1272
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'a69990334c09a20879011284bc65abbae63b78e1' WHERE "thing_with_obscured_ids"."id" = 2
1273
+  (0.6ms) commit transaction
1274
+  (0.0ms) begin transaction
1275
+  (0.0ms) rollback transaction
1276
+  (0.0ms) begin transaction
1277
+  (0.0ms) rollback transaction
1278
+ Connecting to database specified by database.yml
1279
+  (0.1ms) begin transaction
1280
+  (0.0ms) rollback transaction
1281
+  (0.0ms) begin transaction
1282
+  (0.0ms) rollback transaction
1283
+  (0.0ms) begin transaction
1284
+  (0.0ms) rollback transaction
1285
+  (0.0ms) begin transaction
1286
+  (0.0ms) rollback transaction
1287
+  (0.0ms) begin transaction
1288
+  (0.0ms) SAVEPOINT active_record_1
1289
+ SQL (1.9ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1290
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cd9d40802d8f36d8a4d5fbcc5140ac9fd4ed6d90' WHERE "thing_with_obscured_ids"."id" = 3
1291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1292
+  (1.5ms) rollback transaction
1293
+  (0.1ms) begin transaction
1294
+  (0.0ms) SAVEPOINT active_record_1
1295
+ SQL (0.5ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1296
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cd9d40802d8f36d8a4d5fbcc5140ac9fd4ed6d90' WHERE "thing_with_obscured_ids"."id" = 3
1297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1298
+  (0.3ms) rollback transaction
1299
+  (0.0ms) begin transaction
1300
+  (0.0ms) SAVEPOINT active_record_1
1301
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1303
+  (0.0ms) SAVEPOINT active_record_1
1304
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1305
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '9ff3e04469b495105e50d88c325919c93cf4c7f7' WHERE "thing_with_obscured_ids"."id" = 4
1306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1307
+  (0.3ms) rollback transaction
1308
+  (0.0ms) begin transaction
1309
+  (0.0ms) SAVEPOINT active_record_1
1310
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1312
+  (0.0ms) SAVEPOINT active_record_1
1313
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1315
+  (0.0ms) SAVEPOINT active_record_1
1316
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1318
+  (0.0ms) SAVEPOINT active_record_1
1319
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1321
+  (0.0ms) SAVEPOINT active_record_1
1322
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1324
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1325
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1326
+  (0.4ms) rollback transaction
1327
+  (0.0ms) begin transaction
1328
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:36:17 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:36:17 UTC +00:00]]
1329
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'ad8c45e4bacf7525f443d5638299d77a6d79db56' WHERE "thing_with_obscured_ids"."id" = 3
1330
+  (0.7ms) commit transaction
1331
+  (0.0ms) begin transaction
1332
+  (0.0ms) rollback transaction
1333
+  (0.0ms) begin transaction
1334
+  (0.0ms) rollback transaction
1335
+ Connecting to database specified by database.yml
1336
+  (0.3ms) select sqlite_version(*)
1337
+  (1.1ms) CREATE TABLE "thing_with_configured_obscured_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hidden_id" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1338
+  (1.0ms) CREATE TABLE "thing_with_obscured_ids" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "obscured_id" varchar(255), "other_id" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1339
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1340
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1341
+  (0.1ms) SELECT version FROM "schema_migrations"
1342
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130507235114')
1343
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130507231624')
1344
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1345
+ Connecting to database specified by database.yml
1346
+  (0.1ms) begin transaction
1347
+  (0.0ms) rollback transaction
1348
+  (0.0ms) begin transaction
1349
+  (0.0ms) rollback transaction
1350
+  (0.0ms) begin transaction
1351
+  (0.0ms) rollback transaction
1352
+  (0.0ms) begin transaction
1353
+  (0.0ms) rollback transaction
1354
+  (0.0ms) begin transaction
1355
+  (0.0ms) SAVEPOINT active_record_1
1356
+ SQL (1.8ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1357
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'a3f6778c7e24f8d0794e8dd98cc44063fb72729d' WHERE "thing_with_obscured_ids"."id" = 1
1358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1359
+  (2.3ms) rollback transaction
1360
+  (0.0ms) begin transaction
1361
+  (0.0ms) SAVEPOINT active_record_1
1362
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1363
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'a3f6778c7e24f8d0794e8dd98cc44063fb72729d' WHERE "thing_with_obscured_ids"."id" = 1
1364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1365
+  (0.4ms) rollback transaction
1366
+  (0.0ms) begin transaction
1367
+  (0.0ms) SAVEPOINT active_record_1
1368
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1370
+  (0.0ms) SAVEPOINT active_record_1
1371
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1372
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '664aaf6a6539fb73ad1e324decc5d268950dcf08' WHERE "thing_with_obscured_ids"."id" = 2
1373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1374
+  (0.3ms) rollback transaction
1375
+  (0.0ms) begin transaction
1376
+  (0.0ms) SAVEPOINT active_record_1
1377
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1379
+  (0.0ms) SAVEPOINT active_record_1
1380
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1382
+  (0.0ms) SAVEPOINT active_record_1
1383
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1385
+  (0.0ms) SAVEPOINT active_record_1
1386
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1388
+  (0.0ms) SAVEPOINT active_record_1
1389
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1391
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1392
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1393
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1394
+  (0.4ms) rollback transaction
1395
+  (0.0ms) begin transaction
1396
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:40 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:40 UTC +00:00]]
1397
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'bf37da31ff2849f7b8506745965d505a313ba53f' WHERE "thing_with_obscured_ids"."id" = 1
1398
+  (0.6ms) commit transaction
1399
+  (0.0ms) begin transaction
1400
+  (0.0ms) rollback transaction
1401
+  (0.0ms) begin transaction
1402
+  (0.0ms) rollback transaction
1403
+ Connecting to database specified by database.yml
1404
+  (0.1ms) begin transaction
1405
+  (0.0ms) rollback transaction
1406
+  (0.0ms) begin transaction
1407
+  (0.0ms) rollback transaction
1408
+  (0.0ms) begin transaction
1409
+  (0.0ms) rollback transaction
1410
+  (0.0ms) begin transaction
1411
+  (0.0ms) rollback transaction
1412
+  (0.0ms) begin transaction
1413
+  (0.0ms) SAVEPOINT active_record_1
1414
+ SQL (2.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1415
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '3cf43bc3589db7e46a59e49408aec5e960e51854' WHERE "thing_with_obscured_ids"."id" = 2
1416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1417
+  (2.3ms) rollback transaction
1418
+  (0.0ms) begin transaction
1419
+  (0.0ms) SAVEPOINT active_record_1
1420
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1421
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '3cf43bc3589db7e46a59e49408aec5e960e51854' WHERE "thing_with_obscured_ids"."id" = 2
1422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1423
+  (0.4ms) rollback transaction
1424
+  (0.0ms) begin transaction
1425
+  (0.0ms) SAVEPOINT active_record_1
1426
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1428
+  (0.0ms) SAVEPOINT active_record_1
1429
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1430
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '8380b72e469192be61d79d07a7cfe53e42095062' WHERE "thing_with_obscured_ids"."id" = 3
1431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1432
+  (0.3ms) rollback transaction
1433
+  (0.0ms) begin transaction
1434
+  (0.0ms) SAVEPOINT active_record_1
1435
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1437
+  (0.0ms) SAVEPOINT active_record_1
1438
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1440
+  (0.4ms) SAVEPOINT active_record_1
1441
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1443
+  (0.0ms) SAVEPOINT active_record_1
1444
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1446
+  (0.0ms) SAVEPOINT active_record_1
1447
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1449
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1450
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1451
+  (0.3ms) rollback transaction
1452
+  (0.0ms) begin transaction
1453
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:38:55 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:38:55 UTC +00:00]]
1454
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '57bc6734a21c4b39c2abff2a83da12354284d980' WHERE "thing_with_obscured_ids"."id" = 2
1455
+  (0.8ms) commit transaction
1456
+  (0.0ms) begin transaction
1457
+  (0.0ms) rollback transaction
1458
+  (0.0ms) begin transaction
1459
+  (0.0ms) rollback transaction
1460
+ Connecting to database specified by database.yml
1461
+  (0.1ms) begin transaction
1462
+  (0.0ms) rollback transaction
1463
+  (0.0ms) begin transaction
1464
+  (0.0ms) rollback transaction
1465
+  (0.0ms) begin transaction
1466
+  (0.0ms) rollback transaction
1467
+  (0.0ms) begin transaction
1468
+  (0.0ms) rollback transaction
1469
+  (0.0ms) begin transaction
1470
+  (0.0ms) SAVEPOINT active_record_1
1471
+ SQL (2.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1472
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '8d0040e4848296b77452fd997f83f8eaffcfbead' WHERE "thing_with_obscured_ids"."id" = 3
1473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1474
+  (1.7ms) rollback transaction
1475
+  (0.1ms) begin transaction
1476
+  (0.0ms) SAVEPOINT active_record_1
1477
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1478
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '8d0040e4848296b77452fd997f83f8eaffcfbead' WHERE "thing_with_obscured_ids"."id" = 3
1479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1480
+  (0.3ms) rollback transaction
1481
+  (0.0ms) begin transaction
1482
+  (0.0ms) SAVEPOINT active_record_1
1483
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1485
+  (0.0ms) SAVEPOINT active_record_1
1486
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1487
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '99c1f8192eacf4596c71dbc3e8fbb130269d1b9e' WHERE "thing_with_obscured_ids"."id" = 4
1488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1489
+  (0.3ms) rollback transaction
1490
+  (0.0ms) begin transaction
1491
+  (0.0ms) SAVEPOINT active_record_1
1492
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1494
+  (0.0ms) SAVEPOINT active_record_1
1495
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1497
+  (0.0ms) SAVEPOINT active_record_1
1498
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1500
+  (0.0ms) SAVEPOINT active_record_1
1501
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1503
+  (0.0ms) SAVEPOINT active_record_1
1504
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1506
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1507
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1508
+  (0.4ms) rollback transaction
1509
+  (0.0ms) begin transaction
1510
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:34 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:34 UTC +00:00]]
1511
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'f780f788e9d1a6faad6308fa49e55d96192236ec' WHERE "thing_with_obscured_ids"."id" = 3
1512
+  (1.8ms) commit transaction
1513
+  (0.0ms) begin transaction
1514
+  (0.0ms) rollback transaction
1515
+  (0.0ms) begin transaction
1516
+  (0.0ms) rollback transaction
1517
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
1518
+  (0.0ms) begin transaction
1519
+ SQL (0.3ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 1]]
1520
+  (0.5ms) commit transaction
1521
+  (0.0ms) begin transaction
1522
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 2]]
1523
+  (0.4ms) commit transaction
1524
+  (0.0ms) begin transaction
1525
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 3]]
1526
+  (0.7ms) commit transaction
1527
+ Connecting to database specified by database.yml
1528
+  (0.1ms) begin transaction
1529
+  (0.0ms) rollback transaction
1530
+  (0.0ms) begin transaction
1531
+  (0.0ms) rollback transaction
1532
+  (0.0ms) begin transaction
1533
+  (0.0ms) rollback transaction
1534
+  (0.0ms) begin transaction
1535
+  (0.0ms) rollback transaction
1536
+  (0.0ms) begin transaction
1537
+  (0.0ms) SAVEPOINT active_record_1
1538
+ SQL (2.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1539
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '55198ab274d98cac60123e95023cfe452576a3a7' WHERE "thing_with_obscured_ids"."id" = 4
1540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1541
+  (4.2ms) rollback transaction
1542
+  (0.0ms) begin transaction
1543
+  (0.0ms) SAVEPOINT active_record_1
1544
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1545
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '55198ab274d98cac60123e95023cfe452576a3a7' WHERE "thing_with_obscured_ids"."id" = 4
1546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1547
+  (3.2ms) rollback transaction
1548
+  (0.0ms) begin transaction
1549
+  (0.0ms) SAVEPOINT active_record_1
1550
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1552
+  (0.0ms) SAVEPOINT active_record_1
1553
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1554
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'aa89600942fb0d3a86359dae6494cfc07fdbf09d' WHERE "thing_with_obscured_ids"."id" = 5
1555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1556
+  (19.7ms) rollback transaction
1557
+  (0.0ms) begin transaction
1558
+  (0.0ms) SAVEPOINT active_record_1
1559
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1561
+  (0.0ms) SAVEPOINT active_record_1
1562
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1564
+  (0.0ms) SAVEPOINT active_record_1
1565
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1567
+  (0.0ms) SAVEPOINT active_record_1
1568
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1570
+  (0.0ms) SAVEPOINT active_record_1
1571
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1573
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1574
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1575
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1576
+  (0.3ms) rollback transaction
1577
+  (0.0ms) begin transaction
1578
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:45 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:45 UTC +00:00]]
1579
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '23e4d5d9ad6b00731ecea793bd05e05099fd14a0' WHERE "thing_with_obscured_ids"."id" = 4
1580
+  (0.6ms) commit transaction
1581
+  (0.0ms) begin transaction
1582
+  (0.0ms) rollback transaction
1583
+  (0.0ms) begin transaction
1584
+  (0.0ms) rollback transaction
1585
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1586
+  (0.0ms) begin transaction
1587
+ SQL (0.3ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 4]]
1588
+  (0.6ms) commit transaction
1589
+ Connecting to database specified by database.yml
1590
+  (0.1ms) begin transaction
1591
+  (0.0ms) rollback transaction
1592
+  (0.0ms) begin transaction
1593
+  (0.0ms) rollback transaction
1594
+  (0.0ms) begin transaction
1595
+  (0.0ms) rollback transaction
1596
+  (0.0ms) begin transaction
1597
+  (0.0ms) rollback transaction
1598
+  (0.0ms) begin transaction
1599
+  (0.0ms) SAVEPOINT active_record_1
1600
+ SQL (2.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1601
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'e54b2c2baad1136a535f34d6bf02471302696bb0' WHERE "thing_with_obscured_ids"."id" = 5
1602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1603
+  (1.5ms) rollback transaction
1604
+  (0.0ms) begin transaction
1605
+  (0.0ms) SAVEPOINT active_record_1
1606
+ SQL (0.4ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1607
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'e54b2c2baad1136a535f34d6bf02471302696bb0' WHERE "thing_with_obscured_ids"."id" = 5
1608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1609
+  (0.4ms) rollback transaction
1610
+  (0.0ms) begin transaction
1611
+  (0.0ms) SAVEPOINT active_record_1
1612
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1614
+  (0.0ms) SAVEPOINT active_record_1
1615
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1616
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'f70a563b3511dfbff4f44fe4ace34682c2291131' WHERE "thing_with_obscured_ids"."id" = 6
1617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1618
+  (0.3ms) rollback transaction
1619
+  (0.0ms) begin transaction
1620
+  (0.0ms) SAVEPOINT active_record_1
1621
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1623
+  (0.0ms) SAVEPOINT active_record_1
1624
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1626
+  (0.0ms) SAVEPOINT active_record_1
1627
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1629
+  (0.0ms) SAVEPOINT active_record_1
1630
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1632
+  (0.0ms) SAVEPOINT active_record_1
1633
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1635
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1636
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1637
+ ThingWithObscuredId Load (0.3ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1638
+  (0.5ms) rollback transaction
1639
+  (0.0ms) begin transaction
1640
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:47 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:47 UTC +00:00]]
1641
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '41684803fafc00ec782a95715b69e656b3314dfa' WHERE "thing_with_obscured_ids"."id" = 5
1642
+  (0.6ms) commit transaction
1643
+  (0.0ms) begin transaction
1644
+  (0.0ms) rollback transaction
1645
+  (0.0ms) begin transaction
1646
+  (0.0ms) rollback transaction
1647
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1648
+  (0.0ms) begin transaction
1649
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 5]]
1650
+  (0.8ms) commit transaction
1651
+ Connecting to database specified by database.yml
1652
+  (0.1ms) begin transaction
1653
+  (0.0ms) rollback transaction
1654
+  (0.0ms) begin transaction
1655
+  (0.0ms) rollback transaction
1656
+  (0.0ms) begin transaction
1657
+  (0.0ms) rollback transaction
1658
+  (0.0ms) begin transaction
1659
+  (0.0ms) rollback transaction
1660
+  (0.0ms) begin transaction
1661
+  (0.0ms) SAVEPOINT active_record_1
1662
+ SQL (2.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1663
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '149f8fa8aaa8db4e9d7f1b61c80916e0fbb5269f' WHERE "thing_with_obscured_ids"."id" = 6
1664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1665
+  (1.3ms) rollback transaction
1666
+  (0.0ms) begin transaction
1667
+  (0.0ms) SAVEPOINT active_record_1
1668
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1669
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '149f8fa8aaa8db4e9d7f1b61c80916e0fbb5269f' WHERE "thing_with_obscured_ids"."id" = 6
1670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1671
+  (0.4ms) rollback transaction
1672
+  (0.0ms) begin transaction
1673
+  (0.0ms) SAVEPOINT active_record_1
1674
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1676
+  (0.0ms) SAVEPOINT active_record_1
1677
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1678
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cfe2dad2763e6bb0967306ff75af6e58aa4ea66a' WHERE "thing_with_obscured_ids"."id" = 7
1679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1680
+  (0.3ms) rollback transaction
1681
+  (0.0ms) begin transaction
1682
+  (0.0ms) SAVEPOINT active_record_1
1683
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1685
+  (0.0ms) SAVEPOINT active_record_1
1686
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1688
+  (0.0ms) SAVEPOINT active_record_1
1689
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1691
+  (0.0ms) SAVEPOINT active_record_1
1692
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1694
+  (0.0ms) SAVEPOINT active_record_1
1695
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1697
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1698
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1699
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1700
+  (0.3ms) rollback transaction
1701
+  (0.0ms) begin transaction
1702
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:41:49 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:41:49 UTC +00:00]]
1703
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'd152c43dbf9bd4cc8de3c3af12c9c8e69cdd4486' WHERE "thing_with_obscured_ids"."id" = 6
1704
+  (0.6ms) commit transaction
1705
+  (0.0ms) begin transaction
1706
+  (0.0ms) rollback transaction
1707
+  (0.0ms) begin transaction
1708
+  (0.0ms) rollback transaction
1709
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1710
+  (0.0ms) begin transaction
1711
+ SQL (0.3ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 6]]
1712
+  (0.7ms) commit transaction
1713
+ Connecting to database specified by database.yml
1714
+  (0.0ms) begin transaction
1715
+ SQL (2.3ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1716
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = 'ad6f010bf00e0126b97b6f6463132cab9dbd6a00' WHERE "thing_with_configured_obscured_ids"."id" = 1
1717
+  (0.8ms) commit transaction
1718
+  (0.0ms) begin transaction
1719
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = 'ad6f010bf00e0126b97b6f6463132cab9dbd6a00' WHERE "thing_with_configured_obscured_ids"."id" = 1
1720
+  (0.3ms) rollback transaction
1721
+  (0.0ms) begin transaction
1722
+  (0.0ms) rollback transaction
1723
+  (0.0ms) begin transaction
1724
+  (0.0ms) rollback transaction
1725
+  (0.0ms) begin transaction
1726
+  (0.0ms) rollback transaction
1727
+  (0.0ms) begin transaction
1728
+  (0.0ms) SAVEPOINT active_record_1
1729
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1730
+ SQL (0.3ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'bc9cc36fc33243e2884ec3d9fa03995a42df0b78' WHERE "thing_with_obscured_ids"."id" = 7
1731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1732
+  (0.3ms) rollback transaction
1733
+  (0.0ms) begin transaction
1734
+  (0.0ms) SAVEPOINT active_record_1
1735
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1736
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'bc9cc36fc33243e2884ec3d9fa03995a42df0b78' WHERE "thing_with_obscured_ids"."id" = 7
1737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1738
+  (0.3ms) rollback transaction
1739
+  (0.0ms) begin transaction
1740
+  (0.0ms) SAVEPOINT active_record_1
1741
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1743
+  (0.0ms) SAVEPOINT active_record_1
1744
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1745
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'fc28f38e2862191a5be6815c6bf8266d99f1ba1f' WHERE "thing_with_obscured_ids"."id" = 8
1746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1747
+  (0.3ms) rollback transaction
1748
+  (0.0ms) begin transaction
1749
+  (0.0ms) SAVEPOINT active_record_1
1750
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1752
+  (0.0ms) SAVEPOINT active_record_1
1753
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1755
+  (0.0ms) SAVEPOINT active_record_1
1756
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1758
+  (0.0ms) SAVEPOINT active_record_1
1759
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1760
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1761
+  (0.0ms) SAVEPOINT active_record_1
1762
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1764
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1765
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids"
1766
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
1767
+  (0.5ms) rollback transaction
1768
+  (0.0ms) begin transaction
1769
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:57:37 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:57:37 UTC +00:00]]
1770
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '5b01ed83311a9950192c5a00a55289f7bbe60ef5' WHERE "thing_with_obscured_ids"."id" = 7
1771
+  (0.8ms) commit transaction
1772
+  (0.0ms) begin transaction
1773
+  (0.0ms) rollback transaction
1774
+  (0.0ms) begin transaction
1775
+  (0.0ms) rollback transaction
1776
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
1777
+  (0.0ms) begin transaction
1778
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 7]]
1779
+  (0.9ms) commit transaction
1780
+ Connecting to database specified by database.yml
1781
+  (0.0ms) begin transaction
1782
+ SQL (1.9ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1783
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = '4a8604c9f7e07eacda913066bca5a34c6b75030b' WHERE "thing_with_configured_obscured_ids"."id" = 2
1784
+  (2.9ms) commit transaction
1785
+  (0.0ms) begin transaction
1786
+  (0.0ms) rollback transaction
1787
+  (0.0ms) begin transaction
1788
+  (0.0ms) rollback transaction
1789
+  (0.0ms) begin transaction
1790
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = '4a8604c9f7e07eacda913066bca5a34c6b75030b' WHERE "thing_with_configured_obscured_ids"."id" = 2
1791
+  (0.2ms) rollback transaction
1792
+  (0.0ms) begin transaction
1793
+  (0.0ms) rollback transaction
1794
+  (0.0ms) begin transaction
1795
+  (0.0ms) SAVEPOINT active_record_1
1796
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1797
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '2bbf9ba1ff75a61425952a626bde60ed998e56e2' WHERE "thing_with_obscured_ids"."id" = 8
1798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1799
+  (0.3ms) rollback transaction
1800
+  (0.0ms) begin transaction
1801
+  (0.0ms) SAVEPOINT active_record_1
1802
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1803
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '2bbf9ba1ff75a61425952a626bde60ed998e56e2' WHERE "thing_with_obscured_ids"."id" = 8
1804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1805
+  (0.4ms) rollback transaction
1806
+  (0.0ms) begin transaction
1807
+  (0.0ms) SAVEPOINT active_record_1
1808
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1810
+  (0.0ms) SAVEPOINT active_record_1
1811
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1812
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'df605a562899354104f99e393b81fd3be31da5f0' WHERE "thing_with_obscured_ids"."id" = 9
1813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1814
+  (0.4ms) rollback transaction
1815
+  (0.0ms) begin transaction
1816
+  (0.0ms) SAVEPOINT active_record_1
1817
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1819
+  (0.0ms) SAVEPOINT active_record_1
1820
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1822
+  (0.0ms) SAVEPOINT active_record_1
1823
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1825
+  (0.0ms) SAVEPOINT active_record_1
1826
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1828
+  (0.0ms) SAVEPOINT active_record_1
1829
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1831
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1832
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids"
1833
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
1834
+  (0.4ms) rollback transaction
1835
+  (0.0ms) begin transaction
1836
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 18:58:20 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 18:58:20 UTC +00:00]]
1837
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '80f476c6c1c993db0a4abd98d56e3c27f0d0ec18' WHERE "thing_with_obscured_ids"."id" = 8
1838
+  (0.8ms) commit transaction
1839
+  (0.0ms) begin transaction
1840
+  (0.0ms) rollback transaction
1841
+  (0.0ms) begin transaction
1842
+  (0.0ms) rollback transaction
1843
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
1844
+  (0.0ms) begin transaction
1845
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 8]]
1846
+  (0.9ms) commit transaction
1847
+ Connecting to database specified by database.yml
1848
+  (0.0ms) begin transaction
1849
+ SQL (1.8ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1850
+  (2.0ms) commit transaction
1851
+  (0.1ms) begin transaction
1852
+  (0.0ms) rollback transaction
1853
+  (0.0ms) begin transaction
1854
+  (0.0ms) rollback transaction
1855
+  (0.0ms) begin transaction
1856
+  (0.0ms) rollback transaction
1857
+  (0.0ms) begin transaction
1858
+  (0.0ms) rollback transaction
1859
+  (0.0ms) begin transaction
1860
+  (0.0ms) SAVEPOINT active_record_1
1861
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1863
+  (0.0ms) SAVEPOINT active_record_1
1864
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1865
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '246c956bdde188cff9745d49d2456e610ee17211' WHERE "thing_with_obscured_ids"."id" = 10
1866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1867
+  (0.3ms) rollback transaction
1868
+  (0.0ms) begin transaction
1869
+  (0.0ms) SAVEPOINT active_record_1
1870
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1871
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'bc03f1bb192732d0e62e47d6b7e1caa68ab32d68' WHERE "thing_with_obscured_ids"."id" = 9
1872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1873
+  (0.3ms) rollback transaction
1874
+  (0.0ms) begin transaction
1875
+  (0.0ms) SAVEPOINT active_record_1
1876
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1877
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'bc03f1bb192732d0e62e47d6b7e1caa68ab32d68' WHERE "thing_with_obscured_ids"."id" = 9
1878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1879
+  (0.2ms) rollback transaction
1880
+  (0.0ms) begin transaction
1881
+  (0.0ms) SAVEPOINT active_record_1
1882
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1884
+  (0.0ms) SAVEPOINT active_record_1
1885
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1887
+  (0.0ms) SAVEPOINT active_record_1
1888
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1890
+  (0.0ms) SAVEPOINT active_record_1
1891
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1893
+  (0.0ms) SAVEPOINT active_record_1
1894
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1896
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1897
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids"
1898
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
1899
+  (0.4ms) rollback transaction
1900
+  (0.0ms) begin transaction
1901
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:02:46 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:02:46 UTC +00:00]]
1902
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '1f46308dcd23a146ccd59fbc0d0c58ab7a2d4aa3' WHERE "thing_with_obscured_ids"."id" = 9
1903
+  (0.9ms) commit transaction
1904
+  (0.0ms) begin transaction
1905
+  (0.0ms) rollback transaction
1906
+  (0.0ms) begin transaction
1907
+  (0.0ms) rollback transaction
1908
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
1909
+  (0.0ms) begin transaction
1910
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 9]]
1911
+  (0.7ms) commit transaction
1912
+ Connecting to database specified by database.yml
1913
+  (0.0ms) begin transaction
1914
+ SQL (1.8ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1915
+  (2.4ms) commit transaction
1916
+  (0.0ms) begin transaction
1917
+  (0.0ms) rollback transaction
1918
+  (0.0ms) begin transaction
1919
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = 'b6c7f0bbafc19915e916b9c102d34bedf00042e9' WHERE "thing_with_configured_obscured_ids"."id" = 4
1920
+  (0.3ms) rollback transaction
1921
+  (0.0ms) begin transaction
1922
+  (0.0ms) rollback transaction
1923
+  (0.0ms) begin transaction
1924
+  (0.0ms) rollback transaction
1925
+  (0.0ms) begin transaction
1926
+  (0.0ms) SAVEPOINT active_record_1
1927
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1929
+  (0.0ms) SAVEPOINT active_record_1
1930
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1931
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c955787f8fda2a431531e83e37951338d5729cf9' WHERE "thing_with_obscured_ids"."id" = 11
1932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1933
+  (0.3ms) rollback transaction
1934
+  (0.0ms) begin transaction
1935
+  (0.0ms) SAVEPOINT active_record_1
1936
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1937
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cbfd3c3f6b712c8a995ee6fe0621845c0dbe73ef' WHERE "thing_with_obscured_ids"."id" = 10
1938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1939
+  (0.4ms) rollback transaction
1940
+  (0.0ms) begin transaction
1941
+  (0.0ms) SAVEPOINT active_record_1
1942
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1943
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'cbfd3c3f6b712c8a995ee6fe0621845c0dbe73ef' WHERE "thing_with_obscured_ids"."id" = 10
1944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1945
+  (0.2ms) rollback transaction
1946
+  (0.0ms) begin transaction
1947
+  (0.0ms) SAVEPOINT active_record_1
1948
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1950
+  (0.0ms) SAVEPOINT active_record_1
1951
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1953
+  (0.0ms) SAVEPOINT active_record_1
1954
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1956
+  (0.0ms) SAVEPOINT active_record_1
1957
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1959
+  (0.0ms) SAVEPOINT active_record_1
1960
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1962
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
1963
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
1964
+ ThingWithObscuredId Load (0.3ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1965
+  (0.3ms) rollback transaction
1966
+  (0.0ms) begin transaction
1967
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:03:43 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:03:43 UTC +00:00]]
1968
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '75fcf50fc913ce4aecfd837bbd2093d4055c7ada' WHERE "thing_with_obscured_ids"."id" = 10
1969
+  (0.6ms) commit transaction
1970
+  (0.0ms) begin transaction
1971
+  (0.0ms) rollback transaction
1972
+  (0.0ms) begin transaction
1973
+  (0.0ms) rollback transaction
1974
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
1975
+  (0.0ms) begin transaction
1976
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 10]]
1977
+  (0.4ms) commit transaction
1978
+ Connecting to database specified by database.yml
1979
+  (0.0ms) begin transaction
1980
+ SQL (1.9ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
1981
+  (2.4ms) commit transaction
1982
+  (0.0ms) begin transaction
1983
+  (0.0ms) rollback transaction
1984
+  (0.0ms) begin transaction
1985
+  (0.4ms) rollback transaction
1986
+  (0.0ms) begin transaction
1987
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = '0065ce29b66a5294215a2493a08951af47ede409' WHERE "thing_with_configured_obscured_ids"."id" = 5
1988
+  (0.4ms) rollback transaction
1989
+  (0.0ms) begin transaction
1990
+  (0.0ms) rollback transaction
1991
+  (0.0ms) begin transaction
1992
+  (0.0ms) SAVEPOINT active_record_1
1993
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
1994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1995
+  (0.0ms) SAVEPOINT active_record_1
1996
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
1997
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '4fba2abe119c896f7e0fc5404175ccabf7ba950d' WHERE "thing_with_obscured_ids"."id" = 12
1998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1999
+  (0.2ms) rollback transaction
2000
+  (0.0ms) begin transaction
2001
+  (0.0ms) SAVEPOINT active_record_1
2002
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2003
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'f7fe36fdeaba016d7a8641a5a04d287a9e1b7c42' WHERE "thing_with_obscured_ids"."id" = 11
2004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2005
+  (0.4ms) rollback transaction
2006
+  (0.0ms) begin transaction
2007
+  (0.0ms) SAVEPOINT active_record_1
2008
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2009
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'f7fe36fdeaba016d7a8641a5a04d287a9e1b7c42' WHERE "thing_with_obscured_ids"."id" = 11
2010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2011
+  (0.2ms) rollback transaction
2012
+  (0.0ms) begin transaction
2013
+  (0.0ms) SAVEPOINT active_record_1
2014
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2016
+  (0.0ms) SAVEPOINT active_record_1
2017
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2019
+  (0.0ms) SAVEPOINT active_record_1
2020
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2022
+  (0.0ms) SAVEPOINT active_record_1
2023
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2025
+  (0.0ms) SAVEPOINT active_record_1
2026
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2028
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
2029
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
2030
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
2031
+  (0.3ms) rollback transaction
2032
+  (0.0ms) begin transaction
2033
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:04:19 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:04:19 UTC +00:00]]
2034
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '09ca211862a9964d637f76260c5a17590d74247b' WHERE "thing_with_obscured_ids"."id" = 11
2035
+  (0.9ms) commit transaction
2036
+  (0.0ms) begin transaction
2037
+  (0.0ms) rollback transaction
2038
+  (0.0ms) begin transaction
2039
+  (0.0ms) rollback transaction
2040
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
2041
+  (0.0ms) begin transaction
2042
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 11]]
2043
+  (0.5ms) commit transaction
2044
+ Connecting to database specified by database.yml
2045
+  (0.1ms) begin transaction
2046
+  (0.0ms) SAVEPOINT active_record_1
2047
+ SQL (2.1ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2049
+  (1.8ms) rollback transaction
2050
+  (0.0ms) begin transaction
2051
+  (0.0ms) SAVEPOINT active_record_1
2052
+ SQL (0.3ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2054
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = 'eb0270c3ea618b6e2f7bb1a27ce42acce69da309' WHERE "thing_with_configured_obscured_ids"."id" = 6
2055
+  (0.4ms) rollback transaction
2056
+  (0.0ms) begin transaction
2057
+  (0.0ms) SAVEPOINT active_record_1
2058
+ SQL (0.2ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2060
+  (0.3ms) rollback transaction
2061
+  (0.0ms) begin transaction
2062
+  (0.0ms) SAVEPOINT active_record_1
2063
+ SQL (0.3ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2065
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = 'eb0270c3ea618b6e2f7bb1a27ce42acce69da309' WHERE "thing_with_configured_obscured_ids"."id" = 6
2066
+  (0.4ms) rollback transaction
2067
+  (0.0ms) begin transaction
2068
+  (0.0ms) SAVEPOINT active_record_1
2069
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2071
+  (0.0ms) SAVEPOINT active_record_1
2072
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2073
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '7f54643ba41eae723d21702e1aa8d453b3b51579' WHERE "thing_with_obscured_ids"."id" = 13
2074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2075
+  (0.4ms) rollback transaction
2076
+  (0.0ms) begin transaction
2077
+  (0.0ms) SAVEPOINT active_record_1
2078
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2079
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '82aef3baf2949d3bd479b0eebb322fb221fee64f' WHERE "thing_with_obscured_ids"."id" = 12
2080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2081
+  (0.3ms) rollback transaction
2082
+  (0.0ms) begin transaction
2083
+  (0.0ms) SAVEPOINT active_record_1
2084
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2085
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '82aef3baf2949d3bd479b0eebb322fb221fee64f' WHERE "thing_with_obscured_ids"."id" = 12
2086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2087
+  (0.3ms) rollback transaction
2088
+  (0.0ms) begin transaction
2089
+  (0.0ms) SAVEPOINT active_record_1
2090
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2092
+  (0.0ms) SAVEPOINT active_record_1
2093
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2095
+  (0.0ms) SAVEPOINT active_record_1
2096
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2098
+  (0.0ms) SAVEPOINT active_record_1
2099
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2101
+  (0.0ms) SAVEPOINT active_record_1
2102
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2104
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
2105
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
2106
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
2107
+  (0.3ms) rollback transaction
2108
+  (0.0ms) begin transaction
2109
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:18 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:18 UTC +00:00]]
2110
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'a6c23f4b22c6549d773f18767c8af04953ece86f' WHERE "thing_with_obscured_ids"."id" = 12
2111
+  (0.5ms) commit transaction
2112
+  (0.0ms) begin transaction
2113
+  (0.2ms) rollback transaction
2114
+  (0.0ms) begin transaction
2115
+  (0.0ms) rollback transaction
2116
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
2117
+  (0.0ms) begin transaction
2118
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 12]]
2119
+  (0.9ms) commit transaction
2120
+ Connecting to database specified by database.yml
2121
+  (0.1ms) begin transaction
2122
+  (0.0ms) SAVEPOINT active_record_1
2123
+ SQL (1.9ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2125
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = '27ceedf843125015f0c83512554c86d0442c568a' WHERE "thing_with_configured_obscured_ids"."id" = 6
2126
+  (2.4ms) rollback transaction
2127
+  (0.1ms) begin transaction
2128
+  (0.0ms) SAVEPOINT active_record_1
2129
+ SQL (0.5ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2131
+  (0.4ms) rollback transaction
2132
+  (0.0ms) begin transaction
2133
+  (0.0ms) SAVEPOINT active_record_1
2134
+ SQL (0.2ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2136
+ SQL (0.2ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = '27ceedf843125015f0c83512554c86d0442c568a' WHERE "thing_with_configured_obscured_ids"."id" = 6
2137
+  (0.2ms) rollback transaction
2138
+  (0.0ms) begin transaction
2139
+  (0.0ms) SAVEPOINT active_record_1
2140
+ SQL (0.4ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2142
+  (0.3ms) rollback transaction
2143
+  (0.0ms) begin transaction
2144
+  (0.0ms) SAVEPOINT active_record_1
2145
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2146
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'be8bc04b17a74c4bd6aa9bf2294bdfb26340962a' WHERE "thing_with_obscured_ids"."id" = 13
2147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2148
+  (0.4ms) rollback transaction
2149
+  (0.0ms) begin transaction
2150
+  (0.0ms) SAVEPOINT active_record_1
2151
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2153
+  (0.0ms) SAVEPOINT active_record_1
2154
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2155
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'ec91dcb84a0cb8415dbad3c7cd3d1ec83c181d7b' WHERE "thing_with_obscured_ids"."id" = 14
2156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2157
+  (0.3ms) rollback transaction
2158
+  (0.0ms) begin transaction
2159
+  (0.0ms) SAVEPOINT active_record_1
2160
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2161
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'be8bc04b17a74c4bd6aa9bf2294bdfb26340962a' WHERE "thing_with_obscured_ids"."id" = 13
2162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2163
+  (0.4ms) rollback transaction
2164
+  (0.0ms) begin transaction
2165
+  (0.0ms) SAVEPOINT active_record_1
2166
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2168
+  (0.0ms) SAVEPOINT active_record_1
2169
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2171
+  (0.0ms) SAVEPOINT active_record_1
2172
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2174
+  (0.0ms) SAVEPOINT active_record_1
2175
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2177
+  (0.0ms) SAVEPOINT active_record_1
2178
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2180
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
2181
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids" 
2182
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
2183
+  (0.3ms) rollback transaction
2184
+  (0.0ms) begin transaction
2185
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 19:06:21 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 19:06:21 UTC +00:00]]
2186
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = 'fed2eb7162edeb133ae1b8f83d80b8788132f94b' WHERE "thing_with_obscured_ids"."id" = 13
2187
+  (0.9ms) commit transaction
2188
+  (0.0ms) begin transaction
2189
+  (0.0ms) rollback transaction
2190
+  (0.0ms) begin transaction
2191
+  (0.0ms) rollback transaction
2192
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids"
2193
+  (0.0ms) begin transaction
2194
+ SQL (0.2ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 13]]
2195
+  (0.9ms) commit transaction
2196
+ Connecting to database specified by database.yml
2197
+ Connecting to database specified by database.yml
2198
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
2199
+ Connecting to database specified by database.yml
2200
+  (0.1ms) begin transaction
2201
+  (0.0ms) SAVEPOINT active_record_1
2202
+ SQL (3.7ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2204
+  (0.4ms) rollback transaction
2205
+  (0.0ms) begin transaction
2206
+  (0.0ms) SAVEPOINT active_record_1
2207
+ SQL (0.3ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2209
+ SQL (1.0ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = '0525e6ad9b7ddcb2d2d4bdf1e52314012579a4ad' WHERE "thing_with_configured_obscured_ids"."id" = 6
2210
+  (3.0ms) rollback transaction
2211
+  (0.1ms) begin transaction
2212
+  (0.0ms) SAVEPOINT active_record_1
2213
+ SQL (0.3ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2215
+  (9.5ms) rollback transaction
2216
+  (0.1ms) begin transaction
2217
+  (0.0ms) SAVEPOINT active_record_1
2218
+ SQL (0.3ms) INSERT INTO "thing_with_configured_obscured_ids" ("created_at", "hidden_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["hidden_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2220
+ SQL (0.5ms) UPDATE "thing_with_configured_obscured_ids" SET "hidden_id" = '0525e6ad9b7ddcb2d2d4bdf1e52314012579a4ad' WHERE "thing_with_configured_obscured_ids"."id" = 6
2221
+  (0.2ms) rollback transaction
2222
+  (0.0ms) begin transaction
2223
+  (0.0ms) SAVEPOINT active_record_1
2224
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2225
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c02c8e96e61e0966806c2878bff8b03ccd04c69c' WHERE "thing_with_obscured_ids"."id" = 14
2226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2227
+  (0.2ms) rollback transaction
2228
+  (0.0ms) begin transaction
2229
+  (0.0ms) SAVEPOINT active_record_1
2230
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2231
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c02c8e96e61e0966806c2878bff8b03ccd04c69c' WHERE "thing_with_obscured_ids"."id" = 14
2232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2233
+  (0.4ms) rollback transaction
2234
+  (0.0ms) begin transaction
2235
+  (0.0ms) SAVEPOINT active_record_1
2236
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2238
+  (0.0ms) SAVEPOINT active_record_1
2239
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2240
+ SQL (0.1ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '79637bf4ddb7558022788a6f80772d9add625775' WHERE "thing_with_obscured_ids"."id" = 15
2241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2242
+  (0.4ms) rollback transaction
2243
+  (0.0ms) begin transaction
2244
+  (0.0ms) SAVEPOINT active_record_1
2245
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2247
+  (0.0ms) SAVEPOINT active_record_1
2248
+ SQL (0.2ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2250
+  (0.0ms) SAVEPOINT active_record_1
2251
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2253
+  (0.0ms) SAVEPOINT active_record_1
2254
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2256
+  (0.0ms) SAVEPOINT active_record_1
2257
+ SQL (0.1ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2259
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" ORDER BY "thing_with_obscured_ids"."id" ASC LIMIT 1000
2260
+ SQL (0.0ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'c02c8e96e61e0966806c2878bff8b03ccd04c69c' WHERE "thing_with_obscured_ids"."id" = 14
2261
+ SQL (0.0ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '79637bf4ddb7558022788a6f80772d9add625775' WHERE "thing_with_obscured_ids"."id" = 15
2262
+ SQL (0.0ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '9a88ec83393b334bd4581f6246afc8dd9c55c6cf' WHERE "thing_with_obscured_ids"."id" = 16
2263
+ SQL (0.0ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = '2f03ab824d157720a2566ce1a6d387193267deca' WHERE "thing_with_obscured_ids"."id" = 17
2264
+ SQL (0.0ms) UPDATE "thing_with_obscured_ids" SET "obscured_id" = 'e4456779f2d86e55b6d30a7663ef31e43b87d79d' WHERE "thing_with_obscured_ids"."id" = 18
2265
+  (0.0ms) SELECT COUNT(*) FROM "thing_with_obscured_ids"
2266
+ ThingWithObscuredId Load (0.0ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
2267
+  (0.4ms) rollback transaction
2268
+  (0.0ms) begin transaction
2269
+ SQL (0.3ms) INSERT INTO "thing_with_obscured_ids" ("created_at", "obscured_id", "other_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 08 May 2013 23:49:50 UTC +00:00], ["obscured_id", nil], ["other_id", nil], ["updated_at", Wed, 08 May 2013 23:49:50 UTC +00:00]]
2270
+ SQL (0.2ms) UPDATE "thing_with_obscured_ids" SET "other_id" = '531f5040af4617977c1d316de385945f5e6e4856' WHERE "thing_with_obscured_ids"."id" = 14
2271
+  (2.0ms) commit transaction
2272
+  (0.0ms) begin transaction
2273
+  (0.0ms) rollback transaction
2274
+  (0.0ms) begin transaction
2275
+  (0.0ms) rollback transaction
2276
+ ThingWithObscuredId Load (0.1ms) SELECT "thing_with_obscured_ids".* FROM "thing_with_obscured_ids" 
2277
+  (0.0ms) begin transaction
2278
+ SQL (0.5ms) DELETE FROM "thing_with_obscured_ids" WHERE "thing_with_obscured_ids"."id" = ? [["id", 14]]
2279
+  (0.7ms) commit transaction