attr_initializable 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. data/README.md +5 -1
  2. data/Rakefile +8 -3
  3. data/lib/attr_initializable/version.rb +2 -1
  4. data/lib/attr_initializable.rb +15 -6
  5. data/test/{dummy → dummy-rails3}/Rakefile +0 -0
  6. data/test/{dummy → dummy-rails3}/app/assets/javascripts/application.js +0 -0
  7. data/test/{dummy → dummy-rails3}/app/assets/stylesheets/application.css +0 -0
  8. data/test/{dummy → dummy-rails3}/app/controllers/application_controller.rb +0 -0
  9. data/test/{dummy → dummy-rails3}/app/helpers/application_helper.rb +0 -0
  10. data/test/{dummy → dummy-rails3}/app/models/manufacturer.rb +0 -0
  11. data/test/{dummy → dummy-rails3}/app/models/widget.rb +0 -0
  12. data/test/{dummy → dummy-rails3}/app/views/layouts/application.html.erb +0 -0
  13. data/test/{dummy → dummy-rails3}/config/application.rb +0 -0
  14. data/test/{dummy → dummy-rails3}/config/boot.rb +0 -0
  15. data/test/{dummy → dummy-rails3}/config/database.yml +0 -0
  16. data/test/{dummy → dummy-rails3}/config/environment.rb +0 -0
  17. data/test/{dummy → dummy-rails3}/config/environments/development.rb +0 -0
  18. data/test/{dummy → dummy-rails3}/config/environments/production.rb +0 -0
  19. data/test/{dummy → dummy-rails3}/config/environments/test.rb +0 -0
  20. data/test/{dummy → dummy-rails3}/config/initializers/backtrace_silencers.rb +0 -0
  21. data/test/{dummy → dummy-rails3}/config/initializers/inflections.rb +0 -0
  22. data/test/{dummy → dummy-rails3}/config/initializers/mime_types.rb +0 -0
  23. data/test/{dummy → dummy-rails3}/config/initializers/secret_token.rb +0 -0
  24. data/test/{dummy → dummy-rails3}/config/initializers/session_store.rb +0 -0
  25. data/test/{dummy → dummy-rails3}/config/initializers/wrap_parameters.rb +0 -0
  26. data/test/{dummy → dummy-rails3}/config/locales/en.yml +0 -0
  27. data/test/{dummy → dummy-rails3}/config/routes.rb +0 -0
  28. data/test/{dummy → dummy-rails3}/config.ru +0 -0
  29. data/test/{dummy → dummy-rails3}/db/migrate/20131027192625_create_manufacturers.rb +0 -0
  30. data/test/{dummy → dummy-rails3}/db/migrate/20131027192834_create_widgets.rb +0 -0
  31. data/test/{dummy → dummy-rails3}/db/schema.rb +0 -0
  32. data/test/{dummy → dummy-rails3}/db/test.sqlite3 +0 -0
  33. data/test/dummy-rails3/log/test.log +1169 -0
  34. data/test/{dummy → dummy-rails3}/public/404.html +0 -0
  35. data/test/{dummy → dummy-rails3}/public/422.html +0 -0
  36. data/test/{dummy → dummy-rails3}/public/500.html +0 -0
  37. data/test/{dummy → dummy-rails3}/public/favicon.ico +0 -0
  38. data/test/{dummy → dummy-rails3}/script/rails +0 -0
  39. data/test/dummy-rails4/Rakefile +6 -0
  40. data/test/dummy-rails4/app/assets/javascripts/application.js +16 -0
  41. data/test/dummy-rails4/app/assets/stylesheets/application.css +13 -0
  42. data/test/dummy-rails4/app/controllers/application_controller.rb +5 -0
  43. data/test/dummy-rails4/app/helpers/application_helper.rb +2 -0
  44. data/test/dummy-rails4/app/models/manufacturer.rb +3 -0
  45. data/test/dummy-rails4/app/models/widget.rb +7 -0
  46. data/test/dummy-rails4/app/views/layouts/application.html.erb +14 -0
  47. data/test/dummy-rails4/bin/bundle +3 -0
  48. data/test/dummy-rails4/bin/rails +4 -0
  49. data/test/dummy-rails4/bin/rake +4 -0
  50. data/test/dummy-rails4/config/application.rb +27 -0
  51. data/test/dummy-rails4/config/boot.rb +4 -0
  52. data/test/dummy-rails4/config/database.yml +25 -0
  53. data/test/dummy-rails4/config/environment.rb +5 -0
  54. data/test/dummy-rails4/config/environments/development.rb +29 -0
  55. data/test/dummy-rails4/config/environments/production.rb +80 -0
  56. data/test/dummy-rails4/config/environments/test.rb +36 -0
  57. data/test/dummy-rails4/config/initializers/backtrace_silencers.rb +7 -0
  58. data/test/dummy-rails4/config/initializers/filter_parameter_logging.rb +4 -0
  59. data/test/dummy-rails4/config/initializers/inflections.rb +16 -0
  60. data/test/dummy-rails4/config/initializers/mime_types.rb +5 -0
  61. data/test/dummy-rails4/config/initializers/secret_token.rb +12 -0
  62. data/test/dummy-rails4/config/initializers/session_store.rb +3 -0
  63. data/test/dummy-rails4/config/initializers/wrap_parameters.rb +14 -0
  64. data/test/dummy-rails4/config/locales/en.yml +23 -0
  65. data/test/dummy-rails4/config/routes.rb +56 -0
  66. data/test/dummy-rails4/config.ru +4 -0
  67. data/test/dummy-rails4/db/migrate/20131027192625_create_manufacturers.rb +9 -0
  68. data/test/dummy-rails4/db/migrate/20131027192834_create_widgets.rb +11 -0
  69. data/test/dummy-rails4/db/schema.rb +28 -0
  70. data/test/dummy-rails4/db/seeds.rb +7 -0
  71. data/test/{dummy/db/development.sqlite3 → dummy-rails4/db/test.sqlite3} +0 -0
  72. data/test/dummy-rails4/log/development.log +14 -0
  73. data/test/dummy-rails4/log/test.log +706 -0
  74. data/test/dummy-rails4/public/404.html +58 -0
  75. data/test/dummy-rails4/public/422.html +58 -0
  76. data/test/dummy-rails4/public/500.html +57 -0
  77. data/test/dummy-rails4/public/favicon.ico +0 -0
  78. data/test/dummy-rails4/public/robots.txt +5 -0
  79. data/test/test_helper.rb +12 -4
  80. data/test/test_utils.rb +27 -0
  81. metadata +154 -94
  82. data/test/dummy/README.rdoc +0 -261
  83. data/test/dummy/log/development.log +0 -28
  84. data/test/dummy/log/test.log +0 -690
@@ -1,690 +0,0 @@
1
- Connecting to database specified by database.yml
2
-  (0.7ms) begin transaction
3
-  (0.1ms) rollback transaction
4
- Connecting to database specified by database.yml
5
-  (0.4ms) begin transaction
6
-  (0.1ms) rollback transaction
7
- Connecting to database specified by database.yml
8
-  (0.5ms) begin transaction
9
-  (0.1ms) rollback transaction
10
- Connecting to database specified by database.yml
11
-  (0.4ms) begin transaction
12
-  (0.0ms) rollback transaction
13
-  (0.1ms) 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
-  (0.0ms) begin transaction
20
-  (0.0ms) rollback transaction
21
- Connecting to database specified by database.yml
22
-  (0.4ms) begin transaction
23
-  (0.0ms) rollback transaction
24
-  (0.1ms) 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
- Connecting to database specified by database.yml
33
-  (0.4ms) begin transaction
34
-  (0.0ms) rollback transaction
35
-  (0.0ms) begin transaction
36
-  (0.0ms) rollback transaction
37
-  (0.0ms) begin transaction
38
-  (0.0ms) rollback transaction
39
-  (0.0ms) begin transaction
40
-  (0.0ms) rollback transaction
41
-  (0.0ms) begin transaction
42
-  (0.0ms) rollback transaction
43
- Connecting to database specified by database.yml
44
-  (0.4ms) begin transaction
45
-  (0.1ms) rollback transaction
46
-  (0.1ms) begin transaction
47
-  (0.1ms) 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
- Connecting to database specified by database.yml
55
-  (0.4ms) begin transaction
56
-  (0.1ms) rollback transaction
57
-  (0.1ms) begin transaction
58
-  (0.1ms) rollback transaction
59
-  (0.0ms) begin transaction
60
-  (0.0ms) rollback transaction
61
-  (0.0ms) begin transaction
62
-  (0.0ms) rollback transaction
63
-  (0.0ms) begin transaction
64
-  (0.0ms) rollback transaction
65
- Connecting to database specified by database.yml
66
-  (0.4ms) begin transaction
67
-  (0.1ms) rollback transaction
68
-  (0.1ms) begin transaction
69
-  (0.1ms) rollback transaction
70
-  (0.0ms) begin transaction
71
-  (0.0ms) rollback transaction
72
-  (0.0ms) begin transaction
73
-  (0.0ms) rollback transaction
74
-  (0.0ms) begin transaction
75
-  (0.0ms) rollback transaction
76
- Connecting to database specified by database.yml
77
-  (0.7ms) begin transaction
78
-  (0.1ms) rollback transaction
79
-  (0.1ms) begin transaction
80
-  (0.1ms) rollback transaction
81
-  (0.0ms) begin transaction
82
-  (0.1ms) rollback transaction
83
-  (0.1ms) begin transaction
84
-  (0.1ms) rollback transaction
85
-  (0.1ms) begin transaction
86
-  (0.1ms) rollback transaction
87
- Connecting to database specified by database.yml
88
-  (0.6ms) begin transaction
89
-  (0.1ms) rollback transaction
90
-  (0.1ms) begin transaction
91
-  (0.1ms) rollback transaction
92
-  (0.0ms) begin transaction
93
-  (0.1ms) rollback transaction
94
-  (0.0ms) begin transaction
95
-  (0.0ms) rollback transaction
96
-  (0.0ms) begin transaction
97
-  (0.0ms) rollback transaction
98
- Connecting to database specified by database.yml
99
-  (0.6ms) begin transaction
100
-  (0.1ms) rollback transaction
101
-  (0.1ms) begin transaction
102
-  (0.1ms) rollback transaction
103
-  (0.0ms) begin transaction
104
-  (0.1ms) rollback transaction
105
-  (0.0ms) begin transaction
106
-  (0.0ms) rollback transaction
107
-  (0.0ms) begin transaction
108
-  (0.0ms) rollback transaction
109
- Connecting to database specified by database.yml
110
- Connecting to database specified by database.yml
111
- Connecting to database specified by database.yml
112
-  (0.5ms) begin transaction
113
-  (0.1ms) rollback transaction
114
-  (0.1ms) begin transaction
115
-  (0.1ms) rollback transaction
116
-  (0.0ms) begin transaction
117
-  (0.0ms) rollback transaction
118
-  (0.0ms) begin transaction
119
-  (0.0ms) rollback transaction
120
-  (0.0ms) begin transaction
121
-  (0.0ms) rollback transaction
122
- Connecting to database specified by database.yml
123
-  (0.5ms) begin transaction
124
-  (0.1ms) rollback transaction
125
-  (0.1ms) begin transaction
126
-  (0.1ms) rollback transaction
127
-  (0.0ms) begin transaction
128
-  (0.1ms) SAVEPOINT active_record_1
129
- SQL (28.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
130
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
131
-  (0.0ms) RELEASE SAVEPOINT active_record_1
132
-  (0.0ms) SAVEPOINT active_record_1
133
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
134
-  (0.2ms) rollback transaction
135
-  (0.0ms) begin transaction
136
-  (0.0ms) rollback transaction
137
-  (0.0ms) begin transaction
138
-  (0.0ms) SAVEPOINT active_record_1
139
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
140
- SQL (0.2ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
141
-  (0.0ms) RELEASE SAVEPOINT active_record_1
142
-  (0.0ms) SAVEPOINT active_record_1
143
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
144
-  (0.1ms) rollback transaction
145
- Connecting to database specified by database.yml
146
-  (0.7ms) begin transaction
147
-  (0.1ms) rollback transaction
148
-  (0.1ms) begin transaction
149
-  (0.1ms) SAVEPOINT active_record_1
150
- SQL (4.8ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
151
-  (0.1ms) RELEASE SAVEPOINT active_record_1
152
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
153
-  (0.2ms) rollback transaction
154
-  (0.0ms) begin transaction
155
-  (0.0ms) SAVEPOINT active_record_1
156
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
157
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
158
-  (0.0ms) RELEASE SAVEPOINT active_record_1
159
-  (0.0ms) SAVEPOINT active_record_1
160
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
161
-  (0.3ms) rollback transaction
162
-  (0.0ms) begin transaction
163
-  (0.0ms) rollback transaction
164
-  (0.0ms) begin transaction
165
-  (0.0ms) SAVEPOINT active_record_1
166
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
167
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
168
-  (0.1ms) RELEASE SAVEPOINT active_record_1
169
-  (0.0ms) SAVEPOINT active_record_1
170
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
171
-  (0.2ms) rollback transaction
172
- Connecting to database specified by database.yml
173
-  (0.6ms) begin transaction
174
-  (0.1ms) rollback transaction
175
-  (0.1ms) begin transaction
176
-  (0.1ms) SAVEPOINT active_record_1
177
- SQL (4.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
178
-  (0.1ms) RELEASE SAVEPOINT active_record_1
179
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
180
-  (0.2ms) rollback transaction
181
-  (0.0ms) begin transaction
182
-  (0.0ms) SAVEPOINT active_record_1
183
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
184
-  (0.0ms) RELEASE SAVEPOINT active_record_1
185
-  (0.0ms) SAVEPOINT active_record_1
186
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
187
-  (0.0ms) RELEASE SAVEPOINT active_record_1
188
-  (0.0ms) SAVEPOINT active_record_1
189
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
190
-  (0.0ms) RELEASE SAVEPOINT active_record_1
191
-  (0.0ms) SAVEPOINT active_record_1
192
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
193
-  (0.2ms) rollback transaction
194
-  (0.0ms) begin transaction
195
-  (0.0ms) SAVEPOINT active_record_1
196
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
197
-  (0.1ms) RELEASE SAVEPOINT active_record_1
198
-  (0.2ms) rollback transaction
199
-  (0.0ms) begin transaction
200
-  (0.0ms) SAVEPOINT active_record_1
201
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
202
-  (0.0ms) RELEASE SAVEPOINT active_record_1
203
-  (0.0ms) SAVEPOINT active_record_1
204
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
205
-  (0.0ms) RELEASE SAVEPOINT active_record_1
206
-  (0.0ms) SAVEPOINT active_record_1
207
- SQL (0.1ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
208
-  (0.0ms) RELEASE SAVEPOINT active_record_1
209
-  (0.0ms) SAVEPOINT active_record_1
210
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
211
-  (0.2ms) rollback transaction
212
- Connecting to database specified by database.yml
213
-  (0.6ms) begin transaction
214
-  (0.1ms) rollback transaction
215
-  (0.1ms) begin transaction
216
-  (0.1ms) SAVEPOINT active_record_1
217
- SQL (4.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
218
-  (0.1ms) RELEASE SAVEPOINT active_record_1
219
- Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
220
-  (0.2ms) rollback transaction
221
-  (0.0ms) begin transaction
222
-  (0.0ms) SAVEPOINT active_record_1
223
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
224
-  (0.0ms) RELEASE SAVEPOINT active_record_1
225
-  (0.0ms) SAVEPOINT active_record_1
226
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
227
-  (0.0ms) RELEASE SAVEPOINT active_record_1
228
-  (0.0ms) SAVEPOINT active_record_1
229
- SQL (0.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
230
-  (0.0ms) RELEASE SAVEPOINT active_record_1
231
-  (0.0ms) SAVEPOINT active_record_1
232
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
233
-  (0.2ms) rollback transaction
234
-  (0.0ms) begin transaction
235
-  (0.0ms) SAVEPOINT active_record_1
236
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
237
-  (0.0ms) RELEASE SAVEPOINT active_record_1
238
-  (0.2ms) rollback transaction
239
-  (0.0ms) begin transaction
240
-  (0.0ms) SAVEPOINT active_record_1
241
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
242
-  (0.1ms) RELEASE SAVEPOINT active_record_1
243
-  (0.0ms) SAVEPOINT active_record_1
244
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
245
-  (0.0ms) RELEASE SAVEPOINT active_record_1
246
-  (0.0ms) SAVEPOINT active_record_1
247
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
248
-  (0.0ms) RELEASE SAVEPOINT active_record_1
249
-  (0.0ms) SAVEPOINT active_record_1
250
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
251
-  (0.2ms) rollback transaction
252
- Connecting to database specified by database.yml
253
-  (0.6ms) begin transaction
254
-  (0.1ms) rollback transaction
255
-  (0.1ms) begin transaction
256
-  (0.1ms) SAVEPOINT active_record_1
257
- SQL (4.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
258
-  (0.1ms) RELEASE SAVEPOINT active_record_1
259
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
260
-  (0.2ms) rollback transaction
261
-  (0.0ms) begin transaction
262
-  (0.0ms) SAVEPOINT active_record_1
263
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
264
-  (0.0ms) RELEASE SAVEPOINT active_record_1
265
-  (0.0ms) SAVEPOINT active_record_1
266
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
267
-  (0.0ms) RELEASE SAVEPOINT active_record_1
268
-  (0.0ms) SAVEPOINT active_record_1
269
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
270
-  (0.0ms) RELEASE SAVEPOINT active_record_1
271
-  (0.0ms) SAVEPOINT active_record_1
272
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
273
-  (0.2ms) rollback transaction
274
-  (0.0ms) begin transaction
275
-  (0.0ms) SAVEPOINT active_record_1
276
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
277
-  (0.0ms) RELEASE SAVEPOINT active_record_1
278
-  (0.2ms) rollback transaction
279
-  (0.0ms) begin transaction
280
-  (0.0ms) SAVEPOINT active_record_1
281
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
282
-  (0.1ms) RELEASE SAVEPOINT active_record_1
283
-  (0.0ms) SAVEPOINT active_record_1
284
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
285
-  (0.0ms) RELEASE SAVEPOINT active_record_1
286
-  (0.0ms) SAVEPOINT active_record_1
287
- SQL (0.1ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
288
-  (0.0ms) RELEASE SAVEPOINT active_record_1
289
-  (0.0ms) SAVEPOINT active_record_1
290
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
291
-  (0.2ms) rollback transaction
292
- Connecting to database specified by database.yml
293
-  (0.6ms) begin transaction
294
-  (0.1ms) rollback transaction
295
-  (0.1ms) begin transaction
296
-  (0.1ms) SAVEPOINT active_record_1
297
- SQL (5.0ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
298
-  (0.1ms) RELEASE SAVEPOINT active_record_1
299
- Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
300
-  (0.2ms) rollback transaction
301
-  (0.0ms) begin transaction
302
-  (0.0ms) SAVEPOINT active_record_1
303
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
304
-  (0.0ms) RELEASE SAVEPOINT active_record_1
305
-  (0.0ms) SAVEPOINT active_record_1
306
- SQL (0.6ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
307
-  (0.1ms) RELEASE SAVEPOINT active_record_1
308
-  (0.1ms) SAVEPOINT active_record_1
309
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
310
-  (0.0ms) RELEASE SAVEPOINT active_record_1
311
-  (0.0ms) SAVEPOINT active_record_1
312
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
313
-  (0.2ms) rollback transaction
314
-  (0.0ms) begin transaction
315
-  (0.0ms) SAVEPOINT active_record_1
316
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
317
-  (0.1ms) RELEASE SAVEPOINT active_record_1
318
-  (0.2ms) rollback transaction
319
-  (0.0ms) begin transaction
320
-  (0.0ms) SAVEPOINT active_record_1
321
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
322
-  (0.0ms) RELEASE SAVEPOINT active_record_1
323
-  (0.0ms) SAVEPOINT active_record_1
324
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
325
-  (0.0ms) RELEASE SAVEPOINT active_record_1
326
-  (0.0ms) SAVEPOINT active_record_1
327
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
328
-  (0.1ms) RELEASE SAVEPOINT active_record_1
329
-  (0.0ms) SAVEPOINT active_record_1
330
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
331
-  (0.3ms) rollback transaction
332
- Connecting to database specified by database.yml
333
-  (0.5ms) begin transaction
334
-  (0.0ms) rollback transaction
335
-  (0.1ms) begin transaction
336
-  (0.1ms) SAVEPOINT active_record_1
337
- SQL (4.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
338
-  (0.1ms) RELEASE SAVEPOINT active_record_1
339
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
340
-  (0.2ms) rollback transaction
341
-  (0.0ms) begin transaction
342
-  (0.0ms) SAVEPOINT active_record_1
343
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
344
-  (0.0ms) RELEASE SAVEPOINT active_record_1
345
-  (0.0ms) SAVEPOINT active_record_1
346
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
347
-  (0.0ms) RELEASE SAVEPOINT active_record_1
348
-  (0.0ms) SAVEPOINT active_record_1
349
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
350
-  (0.0ms) RELEASE SAVEPOINT active_record_1
351
-  (0.0ms) SAVEPOINT active_record_1
352
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
353
-  (0.2ms) rollback transaction
354
-  (0.0ms) begin transaction
355
-  (0.0ms) SAVEPOINT active_record_1
356
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
357
-  (0.0ms) RELEASE SAVEPOINT active_record_1
358
-  (0.2ms) rollback transaction
359
-  (0.0ms) begin transaction
360
-  (0.0ms) SAVEPOINT active_record_1
361
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
362
-  (0.0ms) RELEASE SAVEPOINT active_record_1
363
-  (0.0ms) SAVEPOINT active_record_1
364
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
365
-  (0.0ms) RELEASE SAVEPOINT active_record_1
366
-  (0.0ms) SAVEPOINT active_record_1
367
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
368
-  (0.0ms) RELEASE SAVEPOINT active_record_1
369
-  (0.0ms) SAVEPOINT active_record_1
370
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
371
-  (0.2ms) rollback transaction
372
- Connecting to database specified by database.yml
373
-  (0.6ms) begin transaction
374
-  (0.1ms) rollback transaction
375
-  (0.1ms) begin transaction
376
-  (0.1ms) SAVEPOINT active_record_1
377
- SQL (4.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
378
-  (0.1ms) RELEASE SAVEPOINT active_record_1
379
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
380
-  (0.2ms) rollback transaction
381
-  (0.0ms) begin transaction
382
-  (0.0ms) SAVEPOINT active_record_1
383
- SQL (0.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
384
-  (0.0ms) RELEASE SAVEPOINT active_record_1
385
-  (0.0ms) SAVEPOINT active_record_1
386
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
387
-  (0.0ms) RELEASE SAVEPOINT active_record_1
388
-  (0.0ms) SAVEPOINT active_record_1
389
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
390
-  (0.0ms) RELEASE SAVEPOINT active_record_1
391
-  (0.0ms) SAVEPOINT active_record_1
392
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
393
-  (0.2ms) rollback transaction
394
-  (0.0ms) begin transaction
395
-  (0.0ms) SAVEPOINT active_record_1
396
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
397
-  (0.1ms) RELEASE SAVEPOINT active_record_1
398
-  (0.2ms) rollback transaction
399
-  (0.0ms) begin transaction
400
-  (0.0ms) SAVEPOINT active_record_1
401
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
402
-  (0.1ms) RELEASE SAVEPOINT active_record_1
403
-  (0.0ms) SAVEPOINT active_record_1
404
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
405
-  (0.0ms) RELEASE SAVEPOINT active_record_1
406
-  (0.0ms) SAVEPOINT active_record_1
407
- SQL (0.1ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
408
-  (0.0ms) RELEASE SAVEPOINT active_record_1
409
-  (0.0ms) SAVEPOINT active_record_1
410
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
411
-  (0.2ms) rollback transaction
412
- Connecting to database specified by database.yml
413
- Connecting to database specified by database.yml
414
-  (0.5ms) begin transaction
415
-  (0.0ms) rollback transaction
416
-  (0.0ms) begin transaction
417
-  (0.1ms) SAVEPOINT active_record_1
418
- SQL (27.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
419
-  (0.1ms) RELEASE SAVEPOINT active_record_1
420
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
421
-  (0.2ms) rollback transaction
422
-  (0.0ms) begin transaction
423
-  (0.0ms) SAVEPOINT active_record_1
424
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
425
-  (0.0ms) RELEASE SAVEPOINT active_record_1
426
-  (0.0ms) SAVEPOINT active_record_1
427
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
428
-  (0.0ms) RELEASE SAVEPOINT active_record_1
429
-  (0.0ms) SAVEPOINT active_record_1
430
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
431
-  (0.0ms) RELEASE SAVEPOINT active_record_1
432
-  (0.0ms) SAVEPOINT active_record_1
433
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
434
-  (0.2ms) rollback transaction
435
-  (0.0ms) begin transaction
436
-  (0.0ms) SAVEPOINT active_record_1
437
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
438
-  (0.0ms) RELEASE SAVEPOINT active_record_1
439
-  (0.2ms) rollback transaction
440
-  (0.0ms) begin transaction
441
-  (0.0ms) SAVEPOINT active_record_1
442
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
443
-  (0.1ms) RELEASE SAVEPOINT active_record_1
444
-  (0.0ms) SAVEPOINT active_record_1
445
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
446
-  (0.0ms) RELEASE SAVEPOINT active_record_1
447
-  (0.0ms) SAVEPOINT active_record_1
448
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
449
-  (0.0ms) RELEASE SAVEPOINT active_record_1
450
-  (0.0ms) SAVEPOINT active_record_1
451
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
452
-  (0.2ms) rollback transaction
453
- Connecting to database specified by database.yml
454
- Connecting to database specified by database.yml
455
- Connecting to database specified by database.yml
456
-  (0.4ms) begin transaction
457
-  (0.0ms) rollback transaction
458
-  (0.0ms) begin transaction
459
-  (0.1ms) SAVEPOINT active_record_1
460
- SQL (27.3ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
461
-  (0.1ms) RELEASE SAVEPOINT active_record_1
462
-  (0.2ms) rollback transaction
463
-  (0.0ms) begin transaction
464
-  (0.0ms) SAVEPOINT active_record_1
465
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
466
-  (0.0ms) RELEASE SAVEPOINT active_record_1
467
-  (0.1ms) SAVEPOINT active_record_1
468
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
469
-  (0.0ms) RELEASE SAVEPOINT active_record_1
470
-  (0.0ms) SAVEPOINT active_record_1
471
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
472
-  (0.0ms) RELEASE SAVEPOINT active_record_1
473
-  (0.0ms) SAVEPOINT active_record_1
474
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
475
-  (0.2ms) rollback transaction
476
-  (0.0ms) begin transaction
477
-  (0.0ms) SAVEPOINT active_record_1
478
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
479
-  (0.0ms) RELEASE SAVEPOINT active_record_1
480
-  (0.1ms) rollback transaction
481
-  (0.0ms) begin transaction
482
-  (0.0ms) SAVEPOINT active_record_1
483
- SQL (0.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
484
-  (0.0ms) RELEASE SAVEPOINT active_record_1
485
-  (0.0ms) SAVEPOINT active_record_1
486
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
487
-  (0.0ms) RELEASE SAVEPOINT active_record_1
488
-  (0.0ms) SAVEPOINT active_record_1
489
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
490
-  (0.1ms) RELEASE SAVEPOINT active_record_1
491
-  (0.0ms) SAVEPOINT active_record_1
492
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
493
-  (0.2ms) rollback transaction
494
- Connecting to database specified by database.yml
495
-  (0.5ms) begin transaction
496
-  (0.0ms) rollback transaction
497
-  (0.0ms) begin transaction
498
-  (0.1ms) SAVEPOINT active_record_1
499
- SQL (27.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
500
-  (0.1ms) RELEASE SAVEPOINT active_record_1
501
-  (0.2ms) rollback transaction
502
-  (0.0ms) begin transaction
503
-  (0.0ms) SAVEPOINT active_record_1
504
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
505
-  (0.0ms) RELEASE SAVEPOINT active_record_1
506
-  (0.1ms) SAVEPOINT active_record_1
507
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
508
-  (0.0ms) RELEASE SAVEPOINT active_record_1
509
-  (0.0ms) SAVEPOINT active_record_1
510
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
511
-  (0.0ms) RELEASE SAVEPOINT active_record_1
512
-  (0.0ms) SAVEPOINT active_record_1
513
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
514
-  (0.2ms) rollback transaction
515
-  (0.0ms) begin transaction
516
-  (0.0ms) SAVEPOINT active_record_1
517
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
518
-  (0.0ms) RELEASE SAVEPOINT active_record_1
519
-  (0.1ms) rollback transaction
520
-  (0.0ms) begin transaction
521
-  (0.0ms) SAVEPOINT active_record_1
522
- SQL (0.4ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
523
-  (0.0ms) RELEASE SAVEPOINT active_record_1
524
-  (0.0ms) SAVEPOINT active_record_1
525
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
526
-  (0.1ms) RELEASE SAVEPOINT active_record_1
527
-  (0.0ms) SAVEPOINT active_record_1
528
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
529
-  (0.1ms) RELEASE SAVEPOINT active_record_1
530
-  (0.0ms) SAVEPOINT active_record_1
531
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
532
-  (0.2ms) rollback transaction
533
- Connecting to database specified by database.yml
534
-  (0.5ms) begin transaction
535
-  (0.0ms) rollback transaction
536
-  (0.0ms) begin transaction
537
-  (0.1ms) SAVEPOINT active_record_1
538
- SQL (27.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
539
-  (0.1ms) RELEASE SAVEPOINT active_record_1
540
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
541
-  (0.2ms) rollback transaction
542
-  (0.0ms) begin transaction
543
-  (0.0ms) SAVEPOINT active_record_1
544
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
545
-  (0.0ms) RELEASE SAVEPOINT active_record_1
546
-  (0.0ms) SAVEPOINT active_record_1
547
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
548
-  (0.0ms) RELEASE SAVEPOINT active_record_1
549
-  (0.0ms) SAVEPOINT active_record_1
550
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
551
-  (0.0ms) RELEASE SAVEPOINT active_record_1
552
-  (0.0ms) SAVEPOINT active_record_1
553
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
554
-  (0.2ms) rollback transaction
555
-  (0.0ms) begin transaction
556
-  (0.0ms) SAVEPOINT active_record_1
557
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
558
-  (0.0ms) RELEASE SAVEPOINT active_record_1
559
-  (0.2ms) rollback transaction
560
-  (0.0ms) begin transaction
561
-  (0.0ms) SAVEPOINT active_record_1
562
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
563
-  (0.0ms) RELEASE SAVEPOINT active_record_1
564
-  (0.0ms) SAVEPOINT active_record_1
565
- SQL (0.4ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
566
-  (0.0ms) RELEASE SAVEPOINT active_record_1
567
-  (0.0ms) SAVEPOINT active_record_1
568
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
569
-  (0.0ms) RELEASE SAVEPOINT active_record_1
570
-  (0.0ms) SAVEPOINT active_record_1
571
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
572
-  (0.2ms) rollback transaction
573
- Connecting to database specified by database.yml
574
-  (0.5ms) begin transaction
575
-  (0.0ms) rollback transaction
576
-  (0.0ms) begin transaction
577
-  (0.1ms) SAVEPOINT active_record_1
578
- SQL (27.7ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:05:26 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:26 UTC +00:00]]
579
-  (0.1ms) RELEASE SAVEPOINT active_record_1
580
- Manufacturer Load (0.3ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
581
-  (0.2ms) rollback transaction
582
-  (0.1ms) begin transaction
583
-  (0.0ms) SAVEPOINT active_record_1
584
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
585
-  (0.0ms) RELEASE SAVEPOINT active_record_1
586
-  (0.0ms) SAVEPOINT active_record_1
587
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
588
-  (0.0ms) RELEASE SAVEPOINT active_record_1
589
-  (0.0ms) SAVEPOINT active_record_1
590
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
591
-  (0.0ms) RELEASE SAVEPOINT active_record_1
592
-  (0.0ms) SAVEPOINT active_record_1
593
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
594
-  (0.2ms) rollback transaction
595
-  (0.0ms) begin transaction
596
-  (0.0ms) SAVEPOINT active_record_1
597
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
598
-  (0.0ms) RELEASE SAVEPOINT active_record_1
599
-  (0.5ms) rollback transaction
600
-  (0.0ms) begin transaction
601
-  (0.0ms) SAVEPOINT active_record_1
602
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
603
-  (0.1ms) RELEASE SAVEPOINT active_record_1
604
-  (0.0ms) SAVEPOINT active_record_1
605
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
606
-  (0.0ms) RELEASE SAVEPOINT active_record_1
607
-  (0.0ms) SAVEPOINT active_record_1
608
- SQL (0.1ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
609
-  (0.0ms) RELEASE SAVEPOINT active_record_1
610
-  (0.0ms) SAVEPOINT active_record_1
611
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
612
-  (0.2ms) rollback transaction
613
- Connecting to database specified by database.yml
614
-  (0.5ms) begin transaction
615
-  (0.0ms) rollback transaction
616
-  (0.0ms) begin transaction
617
-  (0.1ms) SAVEPOINT active_record_1
618
- SQL (4.9ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
619
-  (0.1ms) RELEASE SAVEPOINT active_record_1
620
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
621
-  (0.2ms) rollback transaction
622
-  (0.0ms) begin transaction
623
-  (0.0ms) SAVEPOINT active_record_1
624
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
625
-  (0.0ms) RELEASE SAVEPOINT active_record_1
626
-  (0.0ms) SAVEPOINT active_record_1
627
- SQL (0.5ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
628
-  (0.0ms) RELEASE SAVEPOINT active_record_1
629
-  (0.0ms) SAVEPOINT active_record_1
630
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
631
-  (0.0ms) RELEASE SAVEPOINT active_record_1
632
-  (0.0ms) SAVEPOINT active_record_1
633
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
634
-  (0.2ms) rollback transaction
635
-  (0.0ms) begin transaction
636
-  (0.0ms) SAVEPOINT active_record_1
637
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
638
-  (0.0ms) RELEASE SAVEPOINT active_record_1
639
-  (0.2ms) rollback transaction
640
-  (0.0ms) begin transaction
641
-  (0.0ms) SAVEPOINT active_record_1
642
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
643
-  (0.1ms) RELEASE SAVEPOINT active_record_1
644
-  (0.0ms) SAVEPOINT active_record_1
645
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
646
-  (0.0ms) RELEASE SAVEPOINT active_record_1
647
-  (0.0ms) SAVEPOINT active_record_1
648
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
649
-  (0.0ms) RELEASE SAVEPOINT active_record_1
650
-  (0.0ms) SAVEPOINT active_record_1
651
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
652
-  (0.2ms) rollback transaction
653
- Connecting to database specified by database.yml
654
-  (0.6ms) begin transaction
655
-  (0.1ms) SAVEPOINT active_record_1
656
- SQL (4.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
657
-  (0.1ms) RELEASE SAVEPOINT active_record_1
658
- Manufacturer Load (0.2ms) SELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1
659
-  (0.2ms) rollback transaction
660
-  (0.0ms) begin transaction
661
-  (0.0ms) SAVEPOINT active_record_1
662
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
663
-  (0.0ms) RELEASE SAVEPOINT active_record_1
664
-  (0.0ms) SAVEPOINT active_record_1
665
- SQL (0.7ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
666
-  (0.0ms) RELEASE SAVEPOINT active_record_1
667
-  (0.0ms) SAVEPOINT active_record_1
668
- SQL (0.2ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
669
-  (0.0ms) RELEASE SAVEPOINT active_record_1
670
-  (0.0ms) SAVEPOINT active_record_1
671
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
672
-  (0.2ms) rollback transaction
673
-  (0.0ms) begin transaction
674
-  (0.0ms) SAVEPOINT active_record_1
675
- SQL (0.5ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
676
-  (0.0ms) RELEASE SAVEPOINT active_record_1
677
-  (0.2ms) rollback transaction
678
-  (0.0ms) begin transaction
679
-  (0.0ms) SAVEPOINT active_record_1
680
- SQL (0.6ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
681
-  (0.1ms) RELEASE SAVEPOINT active_record_1
682
-  (0.0ms) SAVEPOINT active_record_1
683
- SQL (0.3ms) INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
684
-  (0.0ms) RELEASE SAVEPOINT active_record_1
685
-  (0.0ms) SAVEPOINT active_record_1
686
- SQL (0.1ms) INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
687
-  (0.0ms) RELEASE SAVEPOINT active_record_1
688
-  (0.0ms) SAVEPOINT active_record_1
689
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
690
-  (0.2ms) rollback transaction