recommendable 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/recommendable/helpers/calculations.rb +1 -1
- data/lib/recommendable/helpers/queriers.rb +2 -0
- data/lib/recommendable/helpers/redis_key_mapper.rb +7 -1
- data/lib/recommendable/orm/active_record_uuid.rb +6 -0
- data/lib/recommendable/rater/bookmarker.rb +0 -7
- data/lib/recommendable/rater/disliker.rb +0 -7
- data/lib/recommendable/rater/hider.rb +0 -7
- data/lib/recommendable/rater/liker.rb +0 -7
- data/lib/recommendable/rater/recommender.rb +16 -10
- data/lib/recommendable/version.rb +1 -1
- data/test/dummy/config/initializers/recommendable.rb +1 -0
- data/test/recommendable/helpers/calculations_test.rb +1 -1
- data/test/recommendable/helpers/redis_key_mapper_test.rb +186 -75
- data/test/recommendable/ratable/dislikable_test.rb +1 -1
- data/test/recommendable/ratable/likable_test.rb +1 -1
- data/test/recommendable/ratable_test.rb +1 -1
- data/test/recommendable/rater/bookmarker_test.rb +1 -1
- data/test/recommendable/rater/disliker_test.rb +1 -1
- data/test/recommendable/rater/hider_test.rb +1 -1
- data/test/recommendable/rater/liker_test.rb +1 -1
- data/test/recommendable/rater/recommender_test.rb +1 -1
- data/test/recommendable/rater_test.rb +1 -1
- data/test/test_helper.rb +2 -2
- metadata +50 -37
- data/test/dummy/log/test.log +0 -1802
@@ -1,7 +1,7 @@
|
|
1
1
|
$LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
|
2
2
|
require 'test_helper'
|
3
3
|
|
4
|
-
class RecommenderTest <
|
4
|
+
class RecommenderTest < Minitest::Test
|
5
5
|
def setup
|
6
6
|
@user = Factory(:user)
|
7
7
|
5.times { |x| instance_variable_set(:"@user#{x+1}", Factory(:user)) }
|
data/test/test_helper.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
ENV['RAILS_ENV'] = 'test'
|
2
2
|
|
3
|
-
require File.expand_path('../dummy/config/environment.rb', __FILE__)
|
4
|
-
|
5
3
|
require 'minitest/autorun'
|
6
4
|
require 'minitest/unit'
|
7
5
|
require 'minitest/pride'
|
8
6
|
|
7
|
+
require File.expand_path('../dummy/config/environment.rb', __FILE__)
|
8
|
+
|
9
9
|
require 'database_cleaner'
|
10
10
|
|
11
11
|
require 'minifacture'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recommendable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Celis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -52,20 +52,34 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 0.2.1
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: minitest
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
73
|
- - ">="
|
60
74
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
75
|
+
version: '5.0'
|
62
76
|
type: :development
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
80
|
- - ">="
|
67
81
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
82
|
+
version: '5.0'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: minifacture
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,8 +136,9 @@ dependencies:
|
|
122
136
|
- - ">="
|
123
137
|
- !ruby/object:Gem::Version
|
124
138
|
version: '0'
|
125
|
-
description:
|
126
|
-
|
139
|
+
description: 'A Like/Dislike recommendation engine for Ruby apps using Redis.
|
140
|
+
|
141
|
+
'
|
127
142
|
email:
|
128
143
|
- david@davidcelis.com
|
129
144
|
executables: []
|
@@ -137,6 +152,7 @@ files:
|
|
137
152
|
- lib/recommendable/helpers/queriers.rb
|
138
153
|
- lib/recommendable/helpers/redis_key_mapper.rb
|
139
154
|
- lib/recommendable/orm/active_record.rb
|
155
|
+
- lib/recommendable/orm/active_record_uuid.rb
|
140
156
|
- lib/recommendable/orm/data_mapper.rb
|
141
157
|
- lib/recommendable/orm/mongo_mapper.rb
|
142
158
|
- lib/recommendable/orm/mongoid.rb
|
@@ -190,7 +206,6 @@ files:
|
|
190
206
|
- test/dummy/db/schema.rb
|
191
207
|
- test/dummy/db/seeds.rb
|
192
208
|
- test/dummy/db/test.sqlite3
|
193
|
-
- test/dummy/log/test.log
|
194
209
|
- test/dummy/script/rails
|
195
210
|
- test/factories.rb
|
196
211
|
- test/recommendable/helpers/calculations_test.rb
|
@@ -225,59 +240,57 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
240
|
version: '0'
|
226
241
|
requirements: []
|
227
242
|
rubyforge_project:
|
228
|
-
rubygems_version: 2.
|
243
|
+
rubygems_version: 2.7.6
|
229
244
|
signing_key:
|
230
245
|
specification_version: 4
|
231
246
|
summary: A Like/Dislike recommendation engine for Ruby apps using Redis
|
232
247
|
test_files:
|
248
|
+
- test/dummy/app/models/documentary.rb
|
249
|
+
- test/dummy/app/models/rock.rb
|
233
250
|
- test/dummy/app/models/boat.rb
|
234
251
|
- test/dummy/app/models/book.rb
|
235
|
-
- test/dummy/app/models/car.rb
|
236
|
-
- test/dummy/app/models/documentary.rb
|
237
252
|
- test/dummy/app/models/movie.rb
|
238
|
-
- test/dummy/app/models/
|
239
|
-
- test/dummy/app/models/user.rb
|
253
|
+
- test/dummy/app/models/car.rb
|
240
254
|
- test/dummy/app/models/vehicle.rb
|
241
|
-
- test/dummy/
|
242
|
-
- test/dummy/config/
|
243
|
-
- test/dummy/config/database.yml
|
244
|
-
- test/dummy/config/environment.rb
|
245
|
-
- test/dummy/config/environments/development.rb
|
255
|
+
- test/dummy/app/models/user.rb
|
256
|
+
- test/dummy/config/routes.rb
|
246
257
|
- test/dummy/config/environments/production.rb
|
258
|
+
- test/dummy/config/environments/development.rb
|
247
259
|
- test/dummy/config/environments/test.rb
|
260
|
+
- test/dummy/config/environment.rb
|
261
|
+
- test/dummy/config/application.rb
|
262
|
+
- test/dummy/config/database.yml
|
263
|
+
- test/dummy/config/boot.rb
|
248
264
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
249
|
-
- test/dummy/config/initializers/inflections.rb
|
250
265
|
- test/dummy/config/initializers/mime_types.rb
|
251
|
-
- test/dummy/config/initializers/recommendable.rb
|
252
|
-
- test/dummy/config/initializers/secret_token.rb
|
253
266
|
- test/dummy/config/initializers/session_store.rb
|
254
267
|
- test/dummy/config/initializers/wrap_parameters.rb
|
255
|
-
- test/dummy/config/
|
268
|
+
- test/dummy/config/initializers/recommendable.rb
|
269
|
+
- test/dummy/config/initializers/secret_token.rb
|
270
|
+
- test/dummy/config/initializers/inflections.rb
|
256
271
|
- test/dummy/config.ru
|
257
|
-
- test/dummy/
|
272
|
+
- test/dummy/script/rails
|
273
|
+
- test/dummy/Rakefile
|
274
|
+
- test/dummy/db/schema.rb
|
275
|
+
- test/dummy/db/seeds.rb
|
276
|
+
- test/dummy/db/test.sqlite3
|
258
277
|
- test/dummy/db/migrate/20121006052300_create_users.rb
|
278
|
+
- test/dummy/db/migrate/20121007213144_create_books.rb
|
259
279
|
- test/dummy/db/migrate/20121006052339_create_movies.rb
|
280
|
+
- test/dummy/db/migrate/20131226165647_add_type_to_movie.rb
|
260
281
|
- test/dummy/db/migrate/20121007212545_create_rocks.rb
|
261
|
-
- test/dummy/db/migrate/20121007213144_create_books.rb
|
262
282
|
- test/dummy/db/migrate/20131226071447_create_vehicles.rb
|
263
|
-
- test/dummy/db/
|
264
|
-
- test/dummy/db/schema.rb
|
265
|
-
- test/dummy/db/seeds.rb
|
266
|
-
- test/dummy/db/test.sqlite3
|
267
|
-
- test/dummy/log/test.log
|
268
|
-
- test/dummy/Rakefile
|
269
|
-
- test/dummy/script/rails
|
270
|
-
- test/factories.rb
|
271
|
-
- test/recommendable/helpers/calculations_test.rb
|
272
|
-
- test/recommendable/helpers/redis_key_mapper_test.rb
|
273
|
-
- test/recommendable/ratable/dislikable_test.rb
|
274
|
-
- test/recommendable/ratable/likable_test.rb
|
275
|
-
- test/recommendable/ratable_test.rb
|
283
|
+
- test/dummy/db/development.sqlite3
|
276
284
|
- test/recommendable/rater/bookmarker_test.rb
|
277
285
|
- test/recommendable/rater/disliker_test.rb
|
278
286
|
- test/recommendable/rater/hider_test.rb
|
279
287
|
- test/recommendable/rater/liker_test.rb
|
280
288
|
- test/recommendable/rater/recommender_test.rb
|
289
|
+
- test/recommendable/ratable/likable_test.rb
|
290
|
+
- test/recommendable/ratable/dislikable_test.rb
|
291
|
+
- test/recommendable/ratable_test.rb
|
281
292
|
- test/recommendable/rater_test.rb
|
293
|
+
- test/recommendable/helpers/redis_key_mapper_test.rb
|
294
|
+
- test/recommendable/helpers/calculations_test.rb
|
295
|
+
- test/factories.rb
|
282
296
|
- test/test_helper.rb
|
283
|
-
has_rdoc: yard
|
data/test/dummy/log/test.log
DELETED
@@ -1,1802 +0,0 @@
|
|
1
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2
|
-
[1m[35m (0.0ms)[0m commit transaction
|
3
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
5
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
6
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:51.966061"], ["email", "user1@example.com"], ["updated_at", "2014-06-08 22:13:51.966061"]]
|
7
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
9
|
-
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:51.972619"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:51.972619"], ["year", 200]]
|
10
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
11
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:51.975570"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:51.975570"], ["year", 200]]
|
13
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
15
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:51.986640"], ["email", "user2@example.com"], ["updated_at", "2014-06-08 22:13:51.986640"]]
|
17
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
19
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:51.987613"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:51.987613"], ["year", 200]]
|
20
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
21
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
22
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:51.988545"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:51.988545"], ["year", 200]]
|
23
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
25
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
26
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:51.993141"], ["email", "user3@example.com"], ["updated_at", "2014-06-08 22:13:51.993141"]]
|
27
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
28
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
29
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:51.994678"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:51.994678"], ["year", 200]]
|
30
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
31
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
32
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:51.996240"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:51.996240"], ["year", 200]]
|
33
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
35
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
36
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.001094"], ["email", "user4@example.com"], ["updated_at", "2014-06-08 22:13:52.001094"]]
|
37
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
38
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
39
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.002045"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.002045"], ["year", 200]]
|
40
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.002935"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.002935"], ["year", 200]]
|
43
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
44
|
-
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
45
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
46
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.007442"], ["name", "Boring Specimen No. 1"], ["updated_at", "2014-06-08 22:13:52.007442"]]
|
47
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
48
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
49
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.009295"], ["email", "user5@example.com"], ["updated_at", "2014-06-08 22:13:52.009295"]]
|
51
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
52
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
53
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.010174"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.010174"], ["year", 200]]
|
54
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.011072"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.011072"], ["year", 200]]
|
57
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
58
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
59
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
60
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.012178"], ["email", "user6@example.com"], ["updated_at", "2014-06-08 22:13:52.012178"]]
|
61
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
62
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
63
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.012977"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.012977"], ["year", 200]]
|
64
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
65
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
66
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
67
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.016969"], ["title", "Harry Potter Vol. 1"], ["updated_at", "2014-06-08 22:13:52.016969"]]
|
68
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
69
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
70
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
71
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.018217"], ["title", "Harry Potter Vol. 2"], ["updated_at", "2014-06-08 22:13:52.018217"]]
|
72
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
73
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)[0m
|
74
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
|
75
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
76
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)
|
77
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (1)[0m
|
78
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
79
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)[0m
|
80
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
|
81
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
82
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)
|
83
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (1)[0m
|
84
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
85
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)[0m
|
86
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
|
87
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
88
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
89
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
90
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.047222"], ["email", "user7@example.com"], ["updated_at", "2014-06-08 22:13:52.047222"]]
|
91
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
92
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.048246"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.048246"], ["year", 200]]
|
94
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
95
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
96
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.049148"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.049148"], ["year", 200]]
|
97
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
98
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
99
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
100
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.050320"], ["email", "user8@example.com"], ["updated_at", "2014-06-08 22:13:52.050320"]]
|
101
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
102
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
103
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.051111"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.051111"], ["year", 200]]
|
104
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
105
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
106
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
107
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.052156"], ["title", "Harry Potter Vol. 3"], ["updated_at", "2014-06-08 22:13:52.052156"]]
|
108
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12, 13)[0m
|
110
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12, 13)
|
111
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (3)[0m
|
112
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12, 13)
|
113
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (3)[0m
|
114
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
|
115
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
116
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
117
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.067017"], ["email", "user9@example.com"], ["updated_at", "2014-06-08 22:13:52.067017"]]
|
118
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
119
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
120
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.067957"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.067957"], ["year", 200]]
|
121
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
122
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
123
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.068827"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.068827"], ["year", 200]]
|
124
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
125
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
126
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
127
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.072476"], ["email", "user10@example.com"], ["updated_at", "2014-06-08 22:13:52.072476"]]
|
128
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
129
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
130
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.073352"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.073352"], ["year", 200]]
|
131
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
132
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
133
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.074247"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.074247"], ["year", 200]]
|
134
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
135
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
136
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
137
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.075412"], ["title", "Harry Potter Vol. 4"], ["updated_at", "2014-06-08 22:13:52.075412"]]
|
138
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
139
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (17)[0m
|
140
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (4)
|
141
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
142
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
143
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.081470"], ["email", "user11@example.com"], ["updated_at", "2014-06-08 22:13:52.081470"]]
|
144
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
145
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
146
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.082447"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.082447"], ["year", 200]]
|
147
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
148
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
149
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.083329"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.083329"], ["year", 200]]
|
150
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
151
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
152
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
153
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.084469"], ["title", "Harry Potter Vol. 5"], ["updated_at", "2014-06-08 22:13:52.084469"]]
|
154
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
155
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
156
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.085279"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.085279"], ["year", 200]]
|
157
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
159
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
160
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.092691"], ["email", "user12@example.com"], ["updated_at", "2014-06-08 22:13:52.092691"]]
|
161
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
162
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
163
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.093742"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.093742"], ["year", 200]]
|
164
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
165
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
166
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.094756"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.094756"], ["year", 200]]
|
167
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
168
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
169
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
170
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.098586"], ["email", "user13@example.com"], ["updated_at", "2014-06-08 22:13:52.098586"]]
|
171
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
172
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
173
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.099520"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.099520"], ["year", 200]]
|
174
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
175
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
176
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.100436"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.100436"], ["year", 200]]
|
177
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
178
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
179
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
180
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.104428"], ["email", "user14@example.com"], ["updated_at", "2014-06-08 22:13:52.104428"]]
|
181
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
182
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
183
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.105287"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.105287"], ["year", 200]]
|
184
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
185
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
186
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.106155"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.106155"], ["year", 200]]
|
187
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
188
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE 1=0
|
189
|
-
[1m[36mBook Load (0.0ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
190
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
191
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)[0m
|
192
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
193
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
194
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)
|
195
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
196
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
197
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 27)[0m
|
198
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
199
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
200
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
201
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
202
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.117922"], ["email", "user15@example.com"], ["updated_at", "2014-06-08 22:13:52.117922"]]
|
203
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
204
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
205
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.118852"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.118852"], ["year", 200]]
|
206
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
207
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
208
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.119704"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.119704"], ["year", 200]]
|
209
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
210
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
211
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
212
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.120836"], ["title", "Harry Potter Vol. 6"], ["updated_at", "2014-06-08 22:13:52.120836"]]
|
213
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
214
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
215
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.121633"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.121633"], ["year", 200]]
|
216
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
217
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
218
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
219
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.129292"], ["email", "user16@example.com"], ["updated_at", "2014-06-08 22:13:52.129292"]]
|
220
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
221
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
222
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.130262"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.130262"], ["year", 200]]
|
223
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
224
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
225
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.131200"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.131200"], ["year", 200]]
|
226
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
227
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
228
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
229
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.133534"], ["email", "user17@example.com"], ["updated_at", "2014-06-08 22:13:52.133534"]]
|
230
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
231
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
232
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.134412"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.134412"], ["year", 200]]
|
233
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
234
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
235
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.135286"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.135286"], ["year", 200]]
|
236
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
237
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
238
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
239
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.139976"], ["email", "user18@example.com"], ["updated_at", "2014-06-08 22:13:52.139976"]]
|
240
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
241
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
242
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.140941"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.140941"], ["year", 200]]
|
243
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
244
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
245
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.141836"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.141836"], ["year", 200]]
|
246
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
247
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
248
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
249
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.146626"], ["email", "user19@example.com"], ["updated_at", "2014-06-08 22:13:52.146626"]]
|
250
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
251
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
252
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.147560"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.147560"], ["year", 200]]
|
253
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
254
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
255
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.148463"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.148463"], ["year", 200]]
|
256
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
257
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks"[0m
|
258
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
259
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.149590"], ["name", "Boring Specimen No. 2"], ["updated_at", "2014-06-08 22:13:52.149590"]]
|
260
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
261
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
262
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
263
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.150992"], ["email", "user20@example.com"], ["updated_at", "2014-06-08 22:13:52.150992"]]
|
264
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
265
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
266
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.151833"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.151833"], ["year", 200]]
|
267
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
268
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
269
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.152700"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.152700"], ["year", 200]]
|
270
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
271
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
272
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
273
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.156842"], ["email", "user21@example.com"], ["updated_at", "2014-06-08 22:13:52.156842"]]
|
274
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
275
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
276
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.157714"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.157714"], ["year", 200]]
|
277
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
278
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.158574"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.158574"], ["year", 200]]
|
280
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
282
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
283
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.159671"], ["title", "Harry Potter Vol. 7"], ["updated_at", "2014-06-08 22:13:52.159671"]]
|
284
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
285
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
286
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.160472"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.160472"], ["year", 200]]
|
287
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
288
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
289
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
290
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.170152"], ["email", "user22@example.com"], ["updated_at", "2014-06-08 22:13:52.170152"]]
|
291
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
292
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
293
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.171133"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.171133"], ["year", 200]]
|
294
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
295
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.172035"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.172035"], ["year", 200]]
|
297
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
298
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
299
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
300
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.173212"], ["email", "user23@example.com"], ["updated_at", "2014-06-08 22:13:52.173212"]]
|
301
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
302
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
303
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.174053"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.174053"], ["year", 200]]
|
304
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
305
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
306
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
307
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.175166"], ["title", "Harry Potter Vol. 8"], ["updated_at", "2014-06-08 22:13:52.175166"]]
|
308
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
309
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
310
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
311
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.176190"], ["title", "Harry Potter Vol. 9"], ["updated_at", "2014-06-08 22:13:52.176190"]]
|
312
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
313
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)[0m
|
314
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
|
315
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
316
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)
|
317
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (8)[0m
|
318
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
319
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)[0m
|
320
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
|
321
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
322
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)
|
323
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (8)[0m
|
324
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
325
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)[0m
|
326
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
|
327
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
328
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
329
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
330
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.205292"], ["email", "user24@example.com"], ["updated_at", "2014-06-08 22:13:52.205292"]]
|
331
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
332
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
333
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.206245"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.206245"], ["year", 200]]
|
334
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
335
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
336
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.207173"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.207173"], ["year", 200]]
|
337
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
338
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
339
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
340
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.208322"], ["title", "Harry Potter Vol. 10"], ["updated_at", "2014-06-08 22:13:52.208322"]]
|
341
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
342
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (47)
|
343
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (10)[0m
|
344
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
345
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.215270"], ["email", "user25@example.com"], ["updated_at", "2014-06-08 22:13:52.215270"]]
|
347
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.216207"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.216207"], ["year", 200]]
|
350
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
351
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
352
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.217118"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.217118"], ["year", 200]]
|
353
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
354
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
355
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
356
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.218237"], ["email", "user26@example.com"], ["updated_at", "2014-06-08 22:13:52.218237"]]
|
357
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
358
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
359
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.219054"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.219054"], ["year", 200]]
|
360
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
361
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
362
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
363
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.220176"], ["title", "Harry Potter Vol. 11"], ["updated_at", "2014-06-08 22:13:52.220176"]]
|
364
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
365
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49, 50)[0m
|
366
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49, 50)
|
367
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (11)[0m
|
368
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49, 50)
|
369
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (11)[0m
|
370
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (11)
|
371
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
372
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
373
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.237195"], ["email", "user27@example.com"], ["updated_at", "2014-06-08 22:13:52.237195"]]
|
374
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
375
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
376
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.238143"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.238143"], ["year", 200]]
|
377
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
378
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
379
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.239040"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.239040"], ["year", 200]]
|
380
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
381
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
382
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
383
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.244338"], ["email", "user28@example.com"], ["updated_at", "2014-06-08 22:13:52.244338"]]
|
384
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
385
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
386
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.245262"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.245262"], ["year", 200]]
|
387
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
388
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
389
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.246146"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.246146"], ["year", 200]]
|
390
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
391
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
392
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
393
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.247321"], ["title", "Harry Potter Vol. 12"], ["updated_at", "2014-06-08 22:13:52.247321"]]
|
394
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
395
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
396
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.248143"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.248143"], ["year", 200]]
|
397
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
398
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
399
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
400
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.257218"], ["email", "user29@example.com"], ["updated_at", "2014-06-08 22:13:52.257218"]]
|
401
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
402
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
403
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.258121"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.258121"], ["year", 200]]
|
404
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
405
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
406
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.259013"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.259013"], ["year", 200]]
|
407
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
408
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
409
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
410
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.262924"], ["email", "user30@example.com"], ["updated_at", "2014-06-08 22:13:52.262924"]]
|
411
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
412
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
413
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.263866"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.263866"], ["year", 200]]
|
414
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
415
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
416
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.264750"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.264750"], ["year", 200]]
|
417
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
418
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
419
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
420
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.270038"], ["email", "user31@example.com"], ["updated_at", "2014-06-08 22:13:52.270038"]]
|
421
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
422
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
423
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.271047"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.271047"], ["year", 200]]
|
424
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
425
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
426
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.271942"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.271942"], ["year", 200]]
|
427
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
428
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
429
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
430
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.273688"], ["email", "user32@example.com"], ["updated_at", "2014-06-08 22:13:52.273688"]]
|
431
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
432
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
433
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.274520"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.274520"], ["year", 200]]
|
434
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
435
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
436
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.275373"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.275373"], ["year", 200]]
|
437
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
438
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE 1=0
|
439
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
440
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
441
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (63)[0m
|
442
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
443
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
444
|
-
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (63)
|
445
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
446
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
447
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (63, 64)[0m
|
448
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
449
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
450
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
451
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
452
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.287774"], ["email", "user33@example.com"], ["updated_at", "2014-06-08 22:13:52.287774"]]
|
453
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
454
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
455
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.288701"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.288701"], ["year", 200]]
|
456
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
457
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
458
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
459
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.308534"], ["email", "user34@example.com"], ["updated_at", "2014-06-08 22:13:52.308534"]]
|
460
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
461
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
462
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
463
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.311653"], ["email", "user35@example.com"], ["updated_at", "2014-06-08 22:13:52.311653"]]
|
464
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
465
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
466
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
467
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.313361"], ["email", "user36@example.com"], ["updated_at", "2014-06-08 22:13:52.313361"]]
|
468
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
469
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
470
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
471
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.315380"], ["email", "user37@example.com"], ["updated_at", "2014-06-08 22:13:52.315380"]]
|
472
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
473
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
474
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
475
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.316401"], ["email", "user38@example.com"], ["updated_at", "2014-06-08 22:13:52.316401"]]
|
476
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
477
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
478
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.317212"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.317212"], ["year", 200]]
|
479
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
480
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE 1=0
|
481
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (37)[0m
|
482
|
-
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (37)
|
483
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (37, 38)[0m
|
484
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
485
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
486
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.325134"], ["email", "user39@example.com"], ["updated_at", "2014-06-08 22:13:52.325134"]]
|
487
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
488
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
489
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
490
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.326207"], ["email", "user40@example.com"], ["updated_at", "2014-06-08 22:13:52.326207"]]
|
491
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
492
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
493
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.327014"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.327014"], ["year", 200]]
|
494
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
495
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE 1=0[0m
|
496
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
497
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
498
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.333192"], ["email", "user41@example.com"], ["updated_at", "2014-06-08 22:13:52.333192"]]
|
499
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
500
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
501
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
502
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.334204"], ["email", "user42@example.com"], ["updated_at", "2014-06-08 22:13:52.334204"]]
|
503
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
504
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
505
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.334990"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.334990"], ["year", 200]]
|
506
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
507
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE 1=0[0m
|
508
|
-
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (41)
|
509
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (41)[0m
|
510
|
-
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (41, 42)
|
511
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
512
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
513
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.342649"], ["email", "user43@example.com"], ["updated_at", "2014-06-08 22:13:52.342649"]]
|
514
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
515
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
516
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
517
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.343801"], ["email", "user44@example.com"], ["updated_at", "2014-06-08 22:13:52.343801"]]
|
518
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
519
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
520
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.344627"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.344627"], ["year", 200]]
|
521
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
522
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE 1=0
|
523
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
524
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
525
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.350874"], ["email", "user45@example.com"], ["updated_at", "2014-06-08 22:13:52.350874"]]
|
526
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
527
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
528
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
529
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.351921"], ["email", "user46@example.com"], ["updated_at", "2014-06-08 22:13:52.351921"]]
|
530
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
531
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
532
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
533
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.352829"], ["email", "user47@example.com"], ["updated_at", "2014-06-08 22:13:52.352829"]]
|
534
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
535
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
536
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
537
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.353755"], ["email", "user48@example.com"], ["updated_at", "2014-06-08 22:13:52.353755"]]
|
538
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
539
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
540
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
541
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.354688"], ["email", "user49@example.com"], ["updated_at", "2014-06-08 22:13:52.354688"]]
|
542
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
543
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
544
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
545
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.355630"], ["email", "user50@example.com"], ["updated_at", "2014-06-08 22:13:52.355630"]]
|
546
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
547
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
548
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.356463"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.356463"], ["year", 200]]
|
549
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
550
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
551
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.357320"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.357320"], ["year", 200]]
|
552
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
553
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
554
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.358079"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.358079"], ["year", 200]]
|
555
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
556
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
557
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.358842"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.358842"], ["year", 200]]
|
558
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
559
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
560
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.359596"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.359596"], ["year", 200]]
|
561
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
562
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
563
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.360486"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.360486"], ["year", 200]]
|
564
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
565
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
566
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.361383"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.361383"], ["year", 200]]
|
567
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
568
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
569
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.362180"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.362180"], ["year", 200]]
|
570
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
571
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
572
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.363043"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.363043"], ["year", 200]]
|
573
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
574
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
575
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.363809"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.363809"], ["year", 200]]
|
576
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
577
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
578
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
579
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.383321"], ["title", "Harry Potter Vol. 13"], ["updated_at", "2014-06-08 22:13:52.383321"]]
|
580
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
581
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
582
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
583
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.384383"], ["title", "Harry Potter Vol. 14"], ["updated_at", "2014-06-08 22:13:52.384383"]]
|
584
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
585
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
586
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
587
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.385317"], ["title", "Harry Potter Vol. 15"], ["updated_at", "2014-06-08 22:13:52.385317"]]
|
588
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
589
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
590
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
591
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.386247"], ["title", "Harry Potter Vol. 16"], ["updated_at", "2014-06-08 22:13:52.386247"]]
|
592
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
593
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
594
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
595
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.387188"], ["title", "Harry Potter Vol. 17"], ["updated_at", "2014-06-08 22:13:52.387188"]]
|
596
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
597
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
598
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
599
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.388098"], ["title", "Harry Potter Vol. 18"], ["updated_at", "2014-06-08 22:13:52.388098"]]
|
600
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
601
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
602
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
603
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.389023"], ["title", "Harry Potter Vol. 19"], ["updated_at", "2014-06-08 22:13:52.389023"]]
|
604
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
605
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
606
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
607
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.389966"], ["title", "Harry Potter Vol. 20"], ["updated_at", "2014-06-08 22:13:52.389966"]]
|
608
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
609
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
610
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
611
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.390904"], ["title", "Harry Potter Vol. 21"], ["updated_at", "2014-06-08 22:13:52.390904"]]
|
612
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
613
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
614
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
615
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.391821"], ["title", "Harry Potter Vol. 22"], ["updated_at", "2014-06-08 22:13:52.391821"]]
|
616
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
617
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
618
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
619
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.546190"], ["email", "user51@example.com"], ["updated_at", "2014-06-08 22:13:52.546190"]]
|
620
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
621
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
622
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
623
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.547287"], ["email", "user52@example.com"], ["updated_at", "2014-06-08 22:13:52.547287"]]
|
624
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
625
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
626
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
627
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.548232"], ["email", "user53@example.com"], ["updated_at", "2014-06-08 22:13:52.548232"]]
|
628
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
629
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
630
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
631
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.549171"], ["email", "user54@example.com"], ["updated_at", "2014-06-08 22:13:52.549171"]]
|
632
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
633
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
634
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
635
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.550070"], ["email", "user55@example.com"], ["updated_at", "2014-06-08 22:13:52.550070"]]
|
636
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
637
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
638
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
639
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.550978"], ["email", "user56@example.com"], ["updated_at", "2014-06-08 22:13:52.550978"]]
|
640
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
641
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
642
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.551791"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.551791"], ["year", 200]]
|
643
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
644
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
645
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.552584"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.552584"], ["year", 200]]
|
646
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
647
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
648
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.553326"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.553326"], ["year", 200]]
|
649
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
650
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
651
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.554096"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.554096"], ["year", 200]]
|
652
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
653
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
654
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.554898"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.554898"], ["year", 200]]
|
655
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
656
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
657
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.556080"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.556080"], ["year", 200]]
|
658
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
659
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
660
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.556930"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.556930"], ["year", 200]]
|
661
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
662
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
663
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.557760"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.557760"], ["year", 200]]
|
664
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
665
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
666
|
-
[1m[35mSQL (0.0ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.558548"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.558548"], ["year", 200]]
|
667
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
668
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
669
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.559369"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.559369"], ["year", 200]]
|
670
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
671
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
672
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
673
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.560492"], ["title", "Harry Potter Vol. 23"], ["updated_at", "2014-06-08 22:13:52.560492"]]
|
674
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
675
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
676
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
677
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.561458"], ["title", "Harry Potter Vol. 24"], ["updated_at", "2014-06-08 22:13:52.561458"]]
|
678
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
679
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
680
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
681
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.562375"], ["title", "Harry Potter Vol. 25"], ["updated_at", "2014-06-08 22:13:52.562375"]]
|
682
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
683
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
684
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
685
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.563500"], ["title", "Harry Potter Vol. 26"], ["updated_at", "2014-06-08 22:13:52.563500"]]
|
686
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
687
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
688
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
689
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.564386"], ["title", "Harry Potter Vol. 27"], ["updated_at", "2014-06-08 22:13:52.564386"]]
|
690
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
691
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
692
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
693
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.565305"], ["title", "Harry Potter Vol. 28"], ["updated_at", "2014-06-08 22:13:52.565305"]]
|
694
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
695
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
696
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
697
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.566218"], ["title", "Harry Potter Vol. 29"], ["updated_at", "2014-06-08 22:13:52.566218"]]
|
698
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
699
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
700
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
701
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.567186"], ["title", "Harry Potter Vol. 30"], ["updated_at", "2014-06-08 22:13:52.567186"]]
|
702
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
703
|
-
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
704
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
705
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.568142"], ["title", "Harry Potter Vol. 31"], ["updated_at", "2014-06-08 22:13:52.568142"]]
|
706
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
707
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
708
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
709
|
-
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.569120"], ["title", "Harry Potter Vol. 32"], ["updated_at", "2014-06-08 22:13:52.569120"]]
|
710
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
711
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
712
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
713
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.698148"], ["email", "user57@example.com"], ["updated_at", "2014-06-08 22:13:52.698148"]]
|
714
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
715
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
716
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
717
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.699724"], ["email", "user58@example.com"], ["updated_at", "2014-06-08 22:13:52.699724"]]
|
718
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
719
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
720
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
721
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.701156"], ["email", "user59@example.com"], ["updated_at", "2014-06-08 22:13:52.701156"]]
|
722
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
723
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
724
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
725
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.702555"], ["email", "user60@example.com"], ["updated_at", "2014-06-08 22:13:52.702555"]]
|
726
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
727
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
728
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
729
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.703847"], ["email", "user61@example.com"], ["updated_at", "2014-06-08 22:13:52.703847"]]
|
730
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
731
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
732
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
733
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.705412"], ["email", "user62@example.com"], ["updated_at", "2014-06-08 22:13:52.705412"]]
|
734
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
735
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
736
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.706562"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.706562"], ["year", 200]]
|
737
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
738
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
739
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.708263"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.708263"], ["year", 200]]
|
740
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
741
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
742
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.709818"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.709818"], ["year", 200]]
|
743
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
744
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
745
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.711244"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.711244"], ["year", 200]]
|
746
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
747
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
748
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.712881"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:52.712881"], ["year", 200]]
|
749
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
750
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
751
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.714473"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.714473"], ["year", 200]]
|
752
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
753
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
754
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.716207"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.716207"], ["year", 200]]
|
755
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
756
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
757
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.717978"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.717978"], ["year", 200]]
|
758
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
759
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
760
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:52.719596"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.719596"], ["year", 200]]
|
761
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
762
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
763
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:52.721369"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:52.721369"], ["year", 200]]
|
764
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
765
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
766
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
767
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.723727"], ["title", "Harry Potter Vol. 33"], ["updated_at", "2014-06-08 22:13:52.723727"]]
|
768
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
769
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
770
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
771
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.725740"], ["title", "Harry Potter Vol. 34"], ["updated_at", "2014-06-08 22:13:52.725740"]]
|
772
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
773
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
774
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
775
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.727756"], ["title", "Harry Potter Vol. 35"], ["updated_at", "2014-06-08 22:13:52.727756"]]
|
776
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
777
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
778
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
779
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.729759"], ["title", "Harry Potter Vol. 36"], ["updated_at", "2014-06-08 22:13:52.729759"]]
|
780
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
781
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
782
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
783
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.731678"], ["title", "Harry Potter Vol. 37"], ["updated_at", "2014-06-08 22:13:52.731678"]]
|
784
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
785
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
786
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
787
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.733779"], ["title", "Harry Potter Vol. 38"], ["updated_at", "2014-06-08 22:13:52.733779"]]
|
788
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
789
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
790
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
791
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.735798"], ["title", "Harry Potter Vol. 39"], ["updated_at", "2014-06-08 22:13:52.735798"]]
|
792
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
793
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
794
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
795
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.737795"], ["title", "Harry Potter Vol. 40"], ["updated_at", "2014-06-08 22:13:52.737795"]]
|
796
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
797
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
798
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
799
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.739601"], ["title", "Harry Potter Vol. 41"], ["updated_at", "2014-06-08 22:13:52.739601"]]
|
800
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
801
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
802
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
803
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:52.741370"], ["title", "Harry Potter Vol. 42"], ["updated_at", "2014-06-08 22:13:52.741370"]]
|
804
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
805
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
|
806
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (90, 91, 92)
|
807
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (93, 94, 95)[0m
|
808
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (36, 37, 38)
|
809
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (33, 34, 35)[0m
|
810
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
|
811
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)[0m
|
812
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
|
813
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)[0m
|
814
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
|
815
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)[0m
|
816
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
|
817
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)[0m
|
818
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
|
819
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)[0m
|
820
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
|
821
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)[0m
|
822
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
823
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
824
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.047838"], ["email", "user63@example.com"], ["updated_at", "2014-06-08 22:13:53.047838"]]
|
825
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
826
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
827
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.049379"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.049379"], ["year", 200]]
|
828
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
829
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
830
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.050600"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.050600"], ["year", 200]]
|
831
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
832
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
833
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
834
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.057983"], ["email", "user64@example.com"], ["updated_at", "2014-06-08 22:13:53.057983"]]
|
835
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
836
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
837
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.059600"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.059600"], ["year", 200]]
|
838
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
839
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
840
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.061351"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.061351"], ["year", 200]]
|
841
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
842
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
843
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
844
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.064572"], ["email", "user65@example.com"], ["updated_at", "2014-06-08 22:13:53.064572"]]
|
845
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
846
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
847
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.066281"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.066281"], ["year", 200]]
|
848
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
849
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
850
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.067768"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.067768"], ["year", 200]]
|
851
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
852
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
853
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
854
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.074822"], ["email", "user66@example.com"], ["updated_at", "2014-06-08 22:13:53.074822"]]
|
855
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
856
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
857
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.076591"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.076591"], ["year", 200]]
|
858
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
859
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
860
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.078377"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.078377"], ["year", 200]]
|
861
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
862
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
863
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
864
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.080919"], ["title", "Harry Potter Vol. 43"], ["updated_at", "2014-06-08 22:13:53.080919"]]
|
865
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
866
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
867
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.082389"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.082389"], ["year", 200]]
|
868
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
869
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
870
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
871
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.099822"], ["email", "user67@example.com"], ["updated_at", "2014-06-08 22:13:53.099822"]]
|
872
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
873
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
874
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.101619"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.101619"], ["year", 200]]
|
875
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
876
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
877
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.103424"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.103424"], ["year", 200]]
|
878
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
879
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
880
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
881
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.111326"], ["email", "user68@example.com"], ["updated_at", "2014-06-08 22:13:53.111326"]]
|
882
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
883
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
884
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.113137"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.113137"], ["year", 200]]
|
885
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
886
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
887
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.114963"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.114963"], ["year", 200]]
|
888
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
889
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE 1=0[0m
|
890
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
891
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
892
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)
|
893
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
894
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
895
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)[0m
|
896
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
897
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
898
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111, 112)
|
899
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
900
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
901
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
902
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
903
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.137629"], ["email", "user69@example.com"], ["updated_at", "2014-06-08 22:13:53.137629"]]
|
904
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
905
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
906
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.139352"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.139352"], ["year", 200]]
|
907
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
908
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
909
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.141142"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.141142"], ["year", 200]]
|
910
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
911
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
912
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
913
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.143366"], ["title", "Harry Potter Vol. 44"], ["updated_at", "2014-06-08 22:13:53.143366"]]
|
914
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
915
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (113)[0m
|
916
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (44)
|
917
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
918
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
919
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.157296"], ["email", "user70@example.com"], ["updated_at", "2014-06-08 22:13:53.157296"]]
|
920
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
921
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
922
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.158977"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.158977"], ["year", 200]]
|
923
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
924
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
925
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.160743"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.160743"], ["year", 200]]
|
926
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
927
|
-
[1m[36m (0.2ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
928
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
929
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.167391"], ["email", "user71@example.com"], ["updated_at", "2014-06-08 22:13:53.167391"]]
|
930
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
931
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
932
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.168999"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.168999"], ["year", 200]]
|
933
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
934
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
935
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.170686"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.170686"], ["year", 200]]
|
936
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
937
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
938
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
939
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.172911"], ["title", "Harry Potter Vol. 45"], ["updated_at", "2014-06-08 22:13:53.172911"]]
|
940
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
941
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
942
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.174483"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.174483"], ["year", 200]]
|
943
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
944
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
945
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
946
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.191380"], ["email", "user72@example.com"], ["updated_at", "2014-06-08 22:13:53.191380"]]
|
947
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
948
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
949
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.192971"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.192971"], ["year", 200]]
|
950
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
951
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
952
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.194657"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.194657"], ["year", 200]]
|
953
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
954
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
955
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
956
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.201959"], ["email", "user73@example.com"], ["updated_at", "2014-06-08 22:13:53.201959"]]
|
957
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
958
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
959
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.203816"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.203816"], ["year", 200]]
|
960
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
961
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
962
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.205575"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.205575"], ["year", 200]]
|
963
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
964
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
965
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
966
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.207912"], ["email", "user74@example.com"], ["updated_at", "2014-06-08 22:13:53.207912"]]
|
967
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
968
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
969
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.209621"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.209621"], ["year", 200]]
|
970
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
971
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
972
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
973
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.211753"], ["title", "Harry Potter Vol. 46"], ["updated_at", "2014-06-08 22:13:53.211753"]]
|
974
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
975
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)[0m
|
976
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
|
977
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (46)[0m
|
978
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
|
979
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (46)[0m
|
980
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (46)
|
981
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
982
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
983
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.243391"], ["email", "user75@example.com"], ["updated_at", "2014-06-08 22:13:53.243391"]]
|
984
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
985
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
986
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.245259"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.245259"], ["year", 200]]
|
987
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
988
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
989
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.247160"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.247160"], ["year", 200]]
|
990
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
991
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
992
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
993
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.249473"], ["email", "user76@example.com"], ["updated_at", "2014-06-08 22:13:53.249473"]]
|
994
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
995
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
996
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.251094"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.251094"], ["year", 200]]
|
997
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
998
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
999
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1000
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.253461"], ["title", "Harry Potter Vol. 47"], ["updated_at", "2014-06-08 22:13:53.253461"]]
|
1001
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1002
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1003
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1004
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.255469"], ["title", "Harry Potter Vol. 48"], ["updated_at", "2014-06-08 22:13:53.255469"]]
|
1005
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1006
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
|
1007
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (47)[0m
|
1008
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
1009
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)[0m
|
1010
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
|
1011
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
1012
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
|
1013
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (47)[0m
|
1014
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
1015
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)[0m
|
1016
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
|
1017
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
1018
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
|
1019
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (47)[0m
|
1020
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
1021
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1022
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1023
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.311393"], ["email", "user77@example.com"], ["updated_at", "2014-06-08 22:13:53.311393"]]
|
1024
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1025
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1026
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.312969"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.312969"], ["year", 200]]
|
1027
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1028
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1029
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.314527"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.314527"], ["year", 200]]
|
1030
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1031
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1032
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1033
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.323453"], ["email", "user78@example.com"], ["updated_at", "2014-06-08 22:13:53.323453"]]
|
1034
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1035
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1036
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.325009"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.325009"], ["year", 200]]
|
1037
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1038
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1039
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.326558"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.326558"], ["year", 200]]
|
1040
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1041
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks"[0m
|
1042
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1043
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.328594"], ["name", "Boring Specimen No. 3"], ["updated_at", "2014-06-08 22:13:53.328594"]]
|
1044
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1045
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1046
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1047
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.331525"], ["email", "user79@example.com"], ["updated_at", "2014-06-08 22:13:53.331525"]]
|
1048
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1049
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1050
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.332978"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.332978"], ["year", 200]]
|
1051
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1052
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1053
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.334508"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.334508"], ["year", 200]]
|
1054
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1055
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1056
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1057
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.336472"], ["email", "user80@example.com"], ["updated_at", "2014-06-08 22:13:53.336472"]]
|
1058
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1059
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1060
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.337841"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.337841"], ["year", 200]]
|
1061
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1062
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1063
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1064
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.339703"], ["title", "Harry Potter Vol. 49"], ["updated_at", "2014-06-08 22:13:53.339703"]]
|
1065
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1066
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (132, 133)
|
1067
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (132, 133)[0m
|
1068
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
|
1069
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (132, 133)[0m
|
1070
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
|
1071
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (49)[0m
|
1072
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1073
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1074
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.361322"], ["email", "user81@example.com"], ["updated_at", "2014-06-08 22:13:53.361322"]]
|
1075
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1076
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1077
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.362956"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.362956"], ["year", 200]]
|
1078
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1079
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1080
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.364539"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.364539"], ["year", 200]]
|
1081
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1082
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1083
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1084
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.366845"], ["title", "Harry Potter Vol. 50"], ["updated_at", "2014-06-08 22:13:53.366845"]]
|
1085
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1086
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (135)
|
1087
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (50)[0m
|
1088
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1089
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1090
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.375435"], ["email", "user82@example.com"], ["updated_at", "2014-06-08 22:13:53.375435"]]
|
1091
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1092
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1093
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.376992"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.376992"], ["year", 200]]
|
1094
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1095
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1096
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.378474"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.378474"], ["year", 200]]
|
1097
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1098
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1099
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1100
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.383464"], ["email", "user83@example.com"], ["updated_at", "2014-06-08 22:13:53.383464"]]
|
1101
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1102
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1103
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.385248"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.385248"], ["year", 200]]
|
1104
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1105
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1106
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.387009"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.387009"], ["year", 200]]
|
1107
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1108
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1109
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1110
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.389222"], ["email", "user84@example.com"], ["updated_at", "2014-06-08 22:13:53.389222"]]
|
1111
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1112
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1113
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.390835"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.390835"], ["year", 200]]
|
1114
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1115
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1116
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1117
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.393049"], ["title", "Harry Potter Vol. 51"], ["updated_at", "2014-06-08 22:13:53.393049"]]
|
1118
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1119
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1120
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1121
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.395009"], ["title", "Harry Potter Vol. 52"], ["updated_at", "2014-06-08 22:13:53.395009"]]
|
1122
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1123
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)[0m
|
1124
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
|
1125
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
1126
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)
|
1127
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (51)[0m
|
1128
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
1129
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)[0m
|
1130
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
|
1131
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
1132
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)
|
1133
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (51)[0m
|
1134
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
1135
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)[0m
|
1136
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
|
1137
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
1138
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1139
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1140
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.434768"], ["email", "user85@example.com"], ["updated_at", "2014-06-08 22:13:53.434768"]]
|
1141
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1142
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1143
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.436703"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.436703"], ["year", 200]]
|
1144
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1145
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1146
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.438400"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.438400"], ["year", 200]]
|
1147
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1148
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1149
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1150
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.445190"], ["email", "user86@example.com"], ["updated_at", "2014-06-08 22:13:53.445190"]]
|
1151
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1152
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1153
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.446919"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.446919"], ["year", 200]]
|
1154
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1155
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1156
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.448735"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.448735"], ["year", 200]]
|
1157
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1158
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1159
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1160
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.454112"], ["email", "user87@example.com"], ["updated_at", "2014-06-08 22:13:53.454112"]]
|
1161
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1162
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1163
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.455773"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.455773"], ["year", 200]]
|
1164
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1165
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1166
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.457298"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.457298"], ["year", 200]]
|
1167
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1168
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1169
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1170
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.463381"], ["email", "user88@example.com"], ["updated_at", "2014-06-08 22:13:53.463381"]]
|
1171
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1172
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1173
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.464956"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.464956"], ["year", 200]]
|
1174
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1175
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1176
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.466541"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.466541"], ["year", 200]]
|
1177
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1178
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1179
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1180
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.469434"], ["email", "user89@example.com"], ["updated_at", "2014-06-08 22:13:53.469434"]]
|
1181
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1182
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1183
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.470970"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.470970"], ["year", 200]]
|
1184
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1185
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1186
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.472487"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.472487"], ["year", 200]]
|
1187
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1188
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1189
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1190
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.474532"], ["title", "Harry Potter Vol. 53"], ["updated_at", "2014-06-08 22:13:53.474532"]]
|
1191
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1192
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1193
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.475922"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.475922"], ["year", 200]]
|
1194
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1195
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1196
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1197
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.485989"], ["email", "user90@example.com"], ["updated_at", "2014-06-08 22:13:53.485989"]]
|
1198
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1199
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1200
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.487527"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.487527"], ["year", 200]]
|
1201
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1202
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1203
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.489101"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.489101"], ["year", 200]]
|
1204
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1205
|
-
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE 1=0[0m
|
1206
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
1207
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
1208
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (153)
|
1209
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
1210
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
1211
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (153)[0m
|
1212
|
-
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE 1=0
|
1213
|
-
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0[0m
|
1214
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (153, 154)
|
1215
|
-
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE 1=0[0m
|
1216
|
-
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
|
1217
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1218
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1219
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.507563"], ["email", "user91@example.com"], ["updated_at", "2014-06-08 22:13:53.507563"]]
|
1220
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1221
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1222
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.509102"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.509102"], ["year", 200]]
|
1223
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1224
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1225
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.510897"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.510897"], ["year", 200]]
|
1226
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1227
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1228
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1229
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.516431"], ["email", "user92@example.com"], ["updated_at", "2014-06-08 22:13:53.516431"]]
|
1230
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1231
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1232
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.517920"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.517920"], ["year", 200]]
|
1233
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1234
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1235
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.519651"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.519651"], ["year", 200]]
|
1236
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1237
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks"[0m
|
1238
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1239
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.521532"], ["name", "Boring Specimen No. 4"], ["updated_at", "2014-06-08 22:13:53.521532"]]
|
1240
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1241
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1242
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1243
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.523922"], ["email", "user93@example.com"], ["updated_at", "2014-06-08 22:13:53.523922"]]
|
1244
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1245
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1246
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.525359"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.525359"], ["year", 200]]
|
1247
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1248
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1249
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.526861"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.526861"], ["year", 200]]
|
1250
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1251
|
-
[1m[36m (0.2ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1252
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1253
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.532115"], ["email", "user94@example.com"], ["updated_at", "2014-06-08 22:13:53.532115"]]
|
1254
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1255
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1256
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.533575"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.533575"], ["year", 200]]
|
1257
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1258
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1259
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.535130"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.535130"], ["year", 200]]
|
1260
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1261
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1262
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1263
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.537147"], ["title", "Harry Potter Vol. 54"], ["updated_at", "2014-06-08 22:13:53.537147"]]
|
1264
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1265
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1266
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.538570"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.538570"], ["year", 200]]
|
1267
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1268
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1269
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1270
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.549758"], ["email", "user95@example.com"], ["updated_at", "2014-06-08 22:13:53.549758"]]
|
1271
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1272
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1273
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1274
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.551782"], ["email", "user96@example.com"], ["updated_at", "2014-06-08 22:13:53.551782"]]
|
1275
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1276
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1277
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1278
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.553780"], ["email", "user97@example.com"], ["updated_at", "2014-06-08 22:13:53.553780"]]
|
1279
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1280
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1281
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1282
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.555725"], ["email", "user98@example.com"], ["updated_at", "2014-06-08 22:13:53.555725"]]
|
1283
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1284
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1285
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
1286
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.557955"], ["email", "user99@example.com"], ["updated_at", "2014-06-08 22:13:53.557955"]]
|
1287
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1288
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1289
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1290
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.559911"], ["email", "user100@example.com"], ["updated_at", "2014-06-08 22:13:53.559911"]]
|
1291
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1292
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1293
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.561398"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.561398"], ["year", 200]]
|
1294
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1295
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1296
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.562815"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.562815"], ["year", 200]]
|
1297
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1298
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1299
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.564143"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.564143"], ["year", 200]]
|
1300
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1301
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1302
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.565444"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.565444"], ["year", 200]]
|
1303
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1304
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1305
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.566765"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.566765"], ["year", 200]]
|
1306
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1307
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1308
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.568369"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.568369"], ["year", 200]]
|
1309
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1310
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1311
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.570172"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.570172"], ["year", 200]]
|
1312
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1313
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1314
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.571850"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.571850"], ["year", 200]]
|
1315
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1316
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1317
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.573541"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.573541"], ["year", 200]]
|
1318
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1319
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1320
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.575260"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.575260"], ["year", 200]]
|
1321
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1322
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1323
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1324
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.577664"], ["title", "Harry Potter Vol. 55"], ["updated_at", "2014-06-08 22:13:53.577664"]]
|
1325
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1326
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1327
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1328
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.579780"], ["title", "Harry Potter Vol. 56"], ["updated_at", "2014-06-08 22:13:53.579780"]]
|
1329
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1330
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1331
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1332
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.581751"], ["title", "Harry Potter Vol. 57"], ["updated_at", "2014-06-08 22:13:53.581751"]]
|
1333
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1334
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1335
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1336
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.583685"], ["title", "Harry Potter Vol. 58"], ["updated_at", "2014-06-08 22:13:53.583685"]]
|
1337
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1338
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1339
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1340
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.585688"], ["title", "Harry Potter Vol. 59"], ["updated_at", "2014-06-08 22:13:53.585688"]]
|
1341
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1342
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1343
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1344
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.587653"], ["title", "Harry Potter Vol. 60"], ["updated_at", "2014-06-08 22:13:53.587653"]]
|
1345
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1346
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1347
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1348
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.589748"], ["title", "Harry Potter Vol. 61"], ["updated_at", "2014-06-08 22:13:53.589748"]]
|
1349
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1350
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1351
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1352
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.591646"], ["title", "Harry Potter Vol. 62"], ["updated_at", "2014-06-08 22:13:53.591646"]]
|
1353
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1354
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1355
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1356
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.593488"], ["title", "Harry Potter Vol. 63"], ["updated_at", "2014-06-08 22:13:53.593488"]]
|
1357
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1358
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1359
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1360
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.595352"], ["title", "Harry Potter Vol. 64"], ["updated_at", "2014-06-08 22:13:53.595352"]]
|
1361
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1362
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
1363
|
-
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (97, 99, 98, 96, 100)[0m
|
1364
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1365
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1366
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.858825"], ["email", "user101@example.com"], ["updated_at", "2014-06-08 22:13:53.858825"]]
|
1367
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1368
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1369
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1370
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.860716"], ["email", "user102@example.com"], ["updated_at", "2014-06-08 22:13:53.860716"]]
|
1371
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1372
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1373
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1374
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.862463"], ["email", "user103@example.com"], ["updated_at", "2014-06-08 22:13:53.862463"]]
|
1375
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1376
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1377
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1378
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.864227"], ["email", "user104@example.com"], ["updated_at", "2014-06-08 22:13:53.864227"]]
|
1379
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1380
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1381
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1382
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.865951"], ["email", "user105@example.com"], ["updated_at", "2014-06-08 22:13:53.865951"]]
|
1383
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1384
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1385
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1386
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.867655"], ["email", "user106@example.com"], ["updated_at", "2014-06-08 22:13:53.867655"]]
|
1387
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1388
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1389
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.869155"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.869155"], ["year", 200]]
|
1390
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1391
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1392
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.870555"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.870555"], ["year", 200]]
|
1393
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1394
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1395
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.871859"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.871859"], ["year", 200]]
|
1396
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1397
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1398
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.873135"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.873135"], ["year", 200]]
|
1399
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1400
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1401
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.874496"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:53.874496"], ["year", 200]]
|
1402
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1403
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1404
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.876033"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.876033"], ["year", 200]]
|
1405
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1406
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1407
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.877901"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.877901"], ["year", 200]]
|
1408
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1409
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1410
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.879376"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.879376"], ["year", 200]]
|
1411
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1412
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1413
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:53.880773"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.880773"], ["year", 200]]
|
1414
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1415
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1416
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:53.882197"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:53.882197"], ["year", 200]]
|
1417
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1418
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1419
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1420
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.884159"], ["title", "Harry Potter Vol. 65"], ["updated_at", "2014-06-08 22:13:53.884159"]]
|
1421
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1422
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1423
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1424
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.885914"], ["title", "Harry Potter Vol. 66"], ["updated_at", "2014-06-08 22:13:53.885914"]]
|
1425
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1426
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1427
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1428
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.887671"], ["title", "Harry Potter Vol. 67"], ["updated_at", "2014-06-08 22:13:53.887671"]]
|
1429
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1430
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1431
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1432
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.889353"], ["title", "Harry Potter Vol. 68"], ["updated_at", "2014-06-08 22:13:53.889353"]]
|
1433
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1434
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1435
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1436
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.891013"], ["title", "Harry Potter Vol. 69"], ["updated_at", "2014-06-08 22:13:53.891013"]]
|
1437
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1438
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1439
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1440
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.892773"], ["title", "Harry Potter Vol. 70"], ["updated_at", "2014-06-08 22:13:53.892773"]]
|
1441
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1442
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1443
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1444
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.894487"], ["title", "Harry Potter Vol. 71"], ["updated_at", "2014-06-08 22:13:53.894487"]]
|
1445
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1446
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1447
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1448
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.896223"], ["title", "Harry Potter Vol. 72"], ["updated_at", "2014-06-08 22:13:53.896223"]]
|
1449
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1450
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1451
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1452
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.898015"], ["title", "Harry Potter Vol. 73"], ["updated_at", "2014-06-08 22:13:53.898015"]]
|
1453
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1454
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1455
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1456
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:53.899766"], ["title", "Harry Potter Vol. 74"], ["updated_at", "2014-06-08 22:13:53.899766"]]
|
1457
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1458
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
1459
|
-
[1m[36mMovie Load (0.3ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)[0m
|
1460
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)
|
1461
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)[0m
|
1462
|
-
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)
|
1463
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)[0m
|
1464
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)
|
1465
|
-
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)[0m
|
1466
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)
|
1467
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1468
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1469
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.183034"], ["email", "user107@example.com"], ["updated_at", "2014-06-08 22:13:54.183034"]]
|
1470
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1471
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1472
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1473
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.185165"], ["email", "user108@example.com"], ["updated_at", "2014-06-08 22:13:54.185165"]]
|
1474
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1475
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1476
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1477
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.187020"], ["email", "user109@example.com"], ["updated_at", "2014-06-08 22:13:54.187020"]]
|
1478
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1479
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1480
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1481
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.188962"], ["email", "user110@example.com"], ["updated_at", "2014-06-08 22:13:54.188962"]]
|
1482
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1483
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1484
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1485
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.190830"], ["email", "user111@example.com"], ["updated_at", "2014-06-08 22:13:54.190830"]]
|
1486
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1487
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1488
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1489
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.192777"], ["email", "user112@example.com"], ["updated_at", "2014-06-08 22:13:54.192777"]]
|
1490
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1491
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1492
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.194436"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.194436"], ["year", 200]]
|
1493
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1494
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1495
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.196066"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.196066"], ["year", 200]]
|
1496
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1497
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1498
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.197582"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.197582"], ["year", 200]]
|
1499
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1500
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1501
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.199135"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.199135"], ["year", 200]]
|
1502
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1503
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1504
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.200717"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.200717"], ["year", 200]]
|
1505
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1506
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1507
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.202686"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.202686"], ["year", 200]]
|
1508
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1509
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1510
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.204419"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.204419"], ["year", 200]]
|
1511
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1512
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1513
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.206134"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.206134"], ["year", 200]]
|
1514
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1515
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1516
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.207768"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.207768"], ["year", 200]]
|
1517
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1518
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1519
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.209406"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.209406"], ["year", 200]]
|
1520
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1521
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1522
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1523
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.211631"], ["title", "Harry Potter Vol. 75"], ["updated_at", "2014-06-08 22:13:54.211631"]]
|
1524
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1525
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1526
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1527
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.213520"], ["title", "Harry Potter Vol. 76"], ["updated_at", "2014-06-08 22:13:54.213520"]]
|
1528
|
-
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1529
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1530
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1531
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.215356"], ["title", "Harry Potter Vol. 77"], ["updated_at", "2014-06-08 22:13:54.215356"]]
|
1532
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1533
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1534
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1535
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.217100"], ["title", "Harry Potter Vol. 78"], ["updated_at", "2014-06-08 22:13:54.217100"]]
|
1536
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1537
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1538
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1539
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.218893"], ["title", "Harry Potter Vol. 79"], ["updated_at", "2014-06-08 22:13:54.218893"]]
|
1540
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1541
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1542
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1543
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.220743"], ["title", "Harry Potter Vol. 80"], ["updated_at", "2014-06-08 22:13:54.220743"]]
|
1544
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1545
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1546
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1547
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.222483"], ["title", "Harry Potter Vol. 81"], ["updated_at", "2014-06-08 22:13:54.222483"]]
|
1548
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1549
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1550
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1551
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.224279"], ["title", "Harry Potter Vol. 82"], ["updated_at", "2014-06-08 22:13:54.224279"]]
|
1552
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1553
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1554
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1555
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.225999"], ["title", "Harry Potter Vol. 83"], ["updated_at", "2014-06-08 22:13:54.225999"]]
|
1556
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1557
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1558
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1559
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.227942"], ["title", "Harry Potter Vol. 84"], ["updated_at", "2014-06-08 22:13:54.227942"]]
|
1560
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1561
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users"[0m
|
1562
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (82, 81)
|
1563
|
-
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (109, 111, 110, 108, 112)[0m
|
1564
|
-
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (107, 111, 110, 108, 112)
|
1565
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1566
|
-
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 107]]
|
1567
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1568
|
-
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (111, 110, 108, 112)
|
1569
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1570
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.553592"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.553592"], ["year", 200]]
|
1571
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1572
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1573
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1574
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.555786"], ["title", "Harry Potter Vol. 85"], ["updated_at", "2014-06-08 22:13:54.555786"]]
|
1575
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1576
|
-
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
1577
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1578
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.557754"], ["name", "Boring Specimen No. 5"], ["updated_at", "2014-06-08 22:13:54.557754"]]
|
1579
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1580
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1581
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["color", "blue"], ["created_at", "2014-06-08 22:13:54.563120"], ["updated_at", "2014-06-08 22:13:54.563120"]]
|
1582
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1583
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1584
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.565141"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.565141"], ["year", 200]]
|
1585
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1586
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1587
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.566855"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.566855"], ["year", 200]]
|
1588
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1589
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1590
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1591
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.569285"], ["email", "user113@example.com"], ["updated_at", "2014-06-08 22:13:54.569285"]]
|
1592
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1593
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1594
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1595
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.571294"], ["email", "user114@example.com"], ["updated_at", "2014-06-08 22:13:54.571294"]]
|
1596
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1597
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (195, 194)[0m
|
1598
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1599
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.588003"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.588003"], ["year", 200]]
|
1600
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1601
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1602
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1603
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.590128"], ["title", "Harry Potter Vol. 86"], ["updated_at", "2014-06-08 22:13:54.590128"]]
|
1604
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1605
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks"[0m
|
1606
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1607
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.592194"], ["name", "Boring Specimen No. 6"], ["updated_at", "2014-06-08 22:13:54.592194"]]
|
1608
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1609
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1610
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.593797"], ["updated_at", "2014-06-08 22:13:54.593797"]]
|
1611
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1612
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1613
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1614
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.597139"], ["email", "user115@example.com"], ["updated_at", "2014-06-08 22:13:54.597139"]]
|
1615
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1616
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1617
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.602957"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.602957"], ["year", 200]]
|
1618
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1619
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1620
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1621
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.605474"], ["title", "Harry Potter Vol. 87"], ["updated_at", "2014-06-08 22:13:54.605474"]]
|
1622
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1623
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks"[0m
|
1624
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1625
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.607738"], ["name", "Boring Specimen No. 7"], ["updated_at", "2014-06-08 22:13:54.607738"]]
|
1626
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1627
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1628
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.609323"], ["updated_at", "2014-06-08 22:13:54.609323"]]
|
1629
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1630
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1631
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1632
|
-
[1m[35mSQL (1.5ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.611453"], ["title", "Harry Potter Vol. 88"], ["updated_at", "2014-06-08 22:13:54.611453"]]
|
1633
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1634
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1635
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1636
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.615546"], ["title", "Harry Potter Vol. 89"], ["updated_at", "2014-06-08 22:13:54.615546"]]
|
1637
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1638
|
-
[1m[35m (0.2ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1639
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1640
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.622447"], ["email", "user116@example.com"], ["updated_at", "2014-06-08 22:13:54.622447"]]
|
1641
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1642
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1643
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1644
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.624635"], ["email", "user117@example.com"], ["updated_at", "2014-06-08 22:13:54.624635"]]
|
1645
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1646
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (88, 89, 87)
|
1647
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1648
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.654751"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.654751"], ["year", 200]]
|
1649
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1650
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1651
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1652
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.657032"], ["title", "Harry Potter Vol. 90"], ["updated_at", "2014-06-08 22:13:54.657032"]]
|
1653
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1654
|
-
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
1655
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1656
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.659236"], ["name", "Boring Specimen No. 8"], ["updated_at", "2014-06-08 22:13:54.659236"]]
|
1657
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1658
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1659
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["color", "blue"], ["created_at", "2014-06-08 22:13:54.660779"], ["updated_at", "2014-06-08 22:13:54.660779"]]
|
1660
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1661
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1662
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.662391"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.662391"], ["year", 200]]
|
1663
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1664
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1665
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1666
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.664701"], ["email", "user118@example.com"], ["updated_at", "2014-06-08 22:13:54.664701"]]
|
1667
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1668
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1669
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1670
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.666751"], ["email", "user119@example.com"], ["updated_at", "2014-06-08 22:13:54.666751"]]
|
1671
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1672
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1673
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1674
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.668577"], ["email", "user120@example.com"], ["updated_at", "2014-06-08 22:13:54.668577"]]
|
1675
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1676
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1677
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1678
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.670667"], ["email", "user121@example.com"], ["updated_at", "2014-06-08 22:13:54.670667"]]
|
1679
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1680
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1681
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "movies" WHERE "movies"."type" IN ('Documentary') AND "movies"."id" = ?[0m [["id", 200]]
|
1682
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1683
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "movies" WHERE 1=0[0m
|
1684
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE 1=0
|
1685
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1686
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.692190"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.692190"], ["year", 200]]
|
1687
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1688
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1689
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1690
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.694457"], ["title", "Harry Potter Vol. 91"], ["updated_at", "2014-06-08 22:13:54.694457"]]
|
1691
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1692
|
-
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
1693
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1694
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.696385"], ["name", "Boring Specimen No. 9"], ["updated_at", "2014-06-08 22:13:54.696385"]]
|
1695
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1696
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1697
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["color", "blue"], ["created_at", "2014-06-08 22:13:54.697878"], ["updated_at", "2014-06-08 22:13:54.697878"]]
|
1698
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1699
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1700
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.699455"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.699455"], ["year", 200]]
|
1701
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1702
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1703
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?)[0m [["color", "red"], ["created_at", "2014-06-08 22:13:54.701517"], ["type", "Car"], ["updated_at", "2014-06-08 22:13:54.701517"]]
|
1704
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1705
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1706
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "white"], ["created_at", "2014-06-08 22:13:54.708955"], ["type", "Boat"], ["updated_at", "2014-06-08 22:13:54.708955"]]
|
1707
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1708
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1709
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.715619"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.715619"], ["year", 200]]
|
1710
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1711
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books"[0m
|
1712
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1713
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.717803"], ["title", "Harry Potter Vol. 92"], ["updated_at", "2014-06-08 22:13:54.717803"]]
|
1714
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1715
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks"[0m
|
1716
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1717
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.719868"], ["name", "Boring Specimen No. 10"], ["updated_at", "2014-06-08 22:13:54.719868"]]
|
1718
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1719
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1720
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.721397"], ["updated_at", "2014-06-08 22:13:54.721397"]]
|
1721
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1722
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1723
|
-
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1724
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.723226"], ["title", "Harry Potter Vol. 93"], ["updated_at", "2014-06-08 22:13:54.723226"]]
|
1725
|
-
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1726
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1727
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1728
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.724883"], ["title", "Harry Potter Vol. 94"], ["updated_at", "2014-06-08 22:13:54.724883"]]
|
1729
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1730
|
-
[1m[35m (0.3ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1731
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1732
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.727656"], ["email", "user122@example.com"], ["updated_at", "2014-06-08 22:13:54.727656"]]
|
1733
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1734
|
-
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
1735
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1736
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.731374"], ["email", "user123@example.com"], ["updated_at", "2014-06-08 22:13:54.731374"]]
|
1737
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1738
|
-
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (93, 94, 92)
|
1739
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1740
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.748992"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.748992"], ["year", 200]]
|
1741
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1742
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1743
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1744
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.751225"], ["title", "Harry Potter Vol. 95"], ["updated_at", "2014-06-08 22:13:54.751225"]]
|
1745
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1746
|
-
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
1747
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1748
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.753217"], ["name", "Boring Specimen No. 11"], ["updated_at", "2014-06-08 22:13:54.753217"]]
|
1749
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1750
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1751
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["color", "blue"], ["created_at", "2014-06-08 22:13:54.754663"], ["updated_at", "2014-06-08 22:13:54.754663"]]
|
1752
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1753
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1754
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1755
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.756497"], ["email", "user124@example.com"], ["updated_at", "2014-06-08 22:13:54.756497"]]
|
1756
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1757
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1758
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1759
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.759705"], ["email", "user125@example.com"], ["updated_at", "2014-06-08 22:13:54.759705"]]
|
1760
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1761
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1762
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1763
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.761661"], ["email", "user126@example.com"], ["updated_at", "2014-06-08 22:13:54.761661"]]
|
1764
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1765
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1766
|
-
[1m[35mSQL (0.1ms)[0m DELETE FROM "movies" WHERE "movies"."id" = ? [["id", 204]]
|
1767
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1768
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1769
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 95]]
|
1770
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1771
|
-
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "movies" WHERE 1=0[0m
|
1772
|
-
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE 1=0
|
1773
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1774
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.799154"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.799154"], ["year", 200]]
|
1775
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1776
|
-
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
1777
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1778
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", "2014-06-08 22:13:54.801442"], ["title", "Harry Potter Vol. 95"], ["updated_at", "2014-06-08 22:13:54.801442"]]
|
1779
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1780
|
-
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
1781
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1782
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.803593"], ["name", "Boring Specimen No. 12"], ["updated_at", "2014-06-08 22:13:54.803593"]]
|
1783
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1784
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1785
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["color", "blue"], ["created_at", "2014-06-08 22:13:54.805108"], ["updated_at", "2014-06-08 22:13:54.805108"]]
|
1786
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1787
|
-
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1788
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", "2014-06-08 22:13:54.806582"], ["title", "#<Proc:0x007f957e479e90@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", "2014-06-08 22:13:54.806582"], ["year", 200]]
|
1789
|
-
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1790
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1791
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.808437"], ["title", "#<Proc:0x007f957e479d28@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", "2014-06-08 22:13:54.808437"], ["year", 200]]
|
1792
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1793
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1794
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1795
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.810998"], ["email", "user127@example.com"], ["updated_at", "2014-06-08 22:13:54.810998"]]
|
1796
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1797
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users"[0m
|
1798
|
-
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1799
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", "2014-06-08 22:13:54.812935"], ["email", "user128@example.com"], ["updated_at", "2014-06-08 22:13:54.812935"]]
|
1800
|
-
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1801
|
-
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)[0m
|
1802
|
-
[1m[35m (0.6ms)[0m rollback transaction
|