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.
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class DislikableTest < MiniTest::Unit::TestCase
4
+ class DislikableTest < Minitest::Test
5
5
  def setup
6
6
  @user = Factory(:user)
7
7
  @friend = Factory(:user)
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class LikableTest < MiniTest::Unit::TestCase
4
+ class LikableTest < Minitest::Test
5
5
  def setup
6
6
  @user = Factory(:user)
7
7
  @friend = Factory(:user)
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class RatableTest < MiniTest::Unit::TestCase
4
+ class RatableTest < Minitest::Test
5
5
  def setup
6
6
  @movie = Factory(:movie)
7
7
  @book = Factory(:book)
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class BookmarkerTest < MiniTest::Unit::TestCase
4
+ class BookmarkerTest < Minitest::Test
5
5
  def setup
6
6
  @user = Factory(:user)
7
7
  @movie = Factory(:movie)
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class DislikerTest < MiniTest::Unit::TestCase
4
+ class DislikerTest < Minitest::Test
5
5
  def setup
6
6
  @user = Factory(:user)
7
7
  @movie = Factory(:movie)
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class HiderTest < MiniTest::Unit::TestCase
4
+ class HiderTest < Minitest::Test
5
5
  def setup
6
6
  @user = Factory(:user)
7
7
  @movie = Factory(:movie)
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class LikerTest < MiniTest::Unit::TestCase
4
+ class LikerTest < Minitest::Test
5
5
  def setup
6
6
  @user = Factory(:user)
7
7
  @movie = Factory(:movie)
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class RecommenderTest < MiniTest::Unit::TestCase
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)) }
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../test', __FILE__)
2
2
  require 'test_helper'
3
3
 
4
- class RaterTest < MiniTest::Unit::TestCase
4
+ class RaterTest < Minitest::Test
5
5
  def setup
6
6
  @user = Factory(:user)
7
7
  end
@@ -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.0
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: 2014-06-08 00:00:00.000000000 Z
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: '4.2'
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: '4.2'
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
- A Like/Dislike recommendation engine for Ruby apps using Redis.
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.2.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/rock.rb
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/config/application.rb
242
- - test/dummy/config/boot.rb
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/routes.rb
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/db/development.sqlite3
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/migrate/20131226165647_add_type_to_movie.rb
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
@@ -1,1802 +0,0 @@
1
-  (0.3ms) begin transaction
2
-  (0.0ms) commit transaction
3
-  (0.0ms) begin transaction
4
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
5
-  (0.0ms) SAVEPOINT active_record_1
6
- SQL (0.3ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
8
-  (0.1ms) SAVEPOINT active_record_1
9
- SQL (0.9ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
11
-  (0.0ms) SAVEPOINT active_record_1
12
- SQL (0.2ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
14
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
15
-  (0.0ms) SAVEPOINT active_record_1
16
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
18
-  (0.0ms) SAVEPOINT active_record_1
19
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
21
-  (0.0ms) SAVEPOINT active_record_1
22
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
24
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
25
-  (0.1ms) SAVEPOINT active_record_1
26
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
28
-  (0.1ms) SAVEPOINT active_record_1
29
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
31
-  (0.1ms) SAVEPOINT active_record_1
32
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
34
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
35
-  (0.0ms) SAVEPOINT active_record_1
36
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
38
-  (0.0ms) SAVEPOINT active_record_1
39
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
41
-  (0.0ms) SAVEPOINT active_record_1
42
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
44
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
45
-  (0.0ms) SAVEPOINT active_record_1
46
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
48
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
49
-  (0.0ms) SAVEPOINT active_record_1
50
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
52
-  (0.0ms) SAVEPOINT active_record_1
53
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
55
-  (0.0ms) SAVEPOINT active_record_1
56
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
58
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
59
-  (0.0ms) SAVEPOINT active_record_1
60
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
62
-  (0.0ms) SAVEPOINT active_record_1
63
- SQL (0.0ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
65
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
66
-  (0.0ms) SAVEPOINT active_record_1
67
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
69
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
70
-  (0.0ms) SAVEPOINT active_record_1
71
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
73
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)
74
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
75
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
76
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)
77
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
78
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
79
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)
80
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
81
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
82
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)
83
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
84
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
85
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (9, 10)
86
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (1)
87
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
88
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
89
-  (0.0ms) SAVEPOINT active_record_1
90
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
92
-  (0.0ms) SAVEPOINT active_record_1
93
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
95
-  (0.0ms) SAVEPOINT active_record_1
96
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
98
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
99
-  (0.0ms) SAVEPOINT active_record_1
100
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
102
-  (0.0ms) SAVEPOINT active_record_1
103
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
105
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
106
-  (0.0ms) SAVEPOINT active_record_1
107
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
109
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12, 13)
110
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12, 13)
111
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
112
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12, 13)
113
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
114
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
115
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
116
-  (0.1ms) SAVEPOINT active_record_1
117
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.067017"], ["email", "user9@example.com"], ["updated_at", "2014-06-08 22:13:52.067017"]]
118
-  (0.0ms) RELEASE SAVEPOINT active_record_1
119
-  (0.0ms) SAVEPOINT active_record_1
120
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
122
-  (0.0ms) SAVEPOINT active_record_1
123
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
125
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
126
-  (0.0ms) SAVEPOINT active_record_1
127
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.072476"], ["email", "user10@example.com"], ["updated_at", "2014-06-08 22:13:52.072476"]]
128
-  (0.0ms) RELEASE SAVEPOINT active_record_1
129
-  (0.0ms) SAVEPOINT active_record_1
130
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
132
-  (0.0ms) SAVEPOINT active_record_1
133
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
135
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
136
-  (0.0ms) SAVEPOINT active_record_1
137
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
139
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (17)
140
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (4)
141
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
142
-  (0.0ms) SAVEPOINT active_record_1
143
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.081470"], ["email", "user11@example.com"], ["updated_at", "2014-06-08 22:13:52.081470"]]
144
-  (0.0ms) RELEASE SAVEPOINT active_record_1
145
-  (0.0ms) SAVEPOINT active_record_1
146
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
148
-  (0.0ms) SAVEPOINT active_record_1
149
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
151
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
152
-  (0.0ms) SAVEPOINT active_record_1
153
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
155
-  (0.0ms) SAVEPOINT active_record_1
156
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
158
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
159
-  (0.0ms) SAVEPOINT active_record_1
160
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
162
-  (0.0ms) SAVEPOINT active_record_1
163
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
165
-  (0.0ms) SAVEPOINT active_record_1
166
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
168
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
169
-  (0.0ms) SAVEPOINT active_record_1
170
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
172
-  (0.0ms) SAVEPOINT active_record_1
173
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
175
-  (0.0ms) SAVEPOINT active_record_1
176
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
178
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
179
-  (0.0ms) SAVEPOINT active_record_1
180
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
182
-  (0.0ms) SAVEPOINT active_record_1
183
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
185
-  (0.0ms) SAVEPOINT active_record_1
186
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
188
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE 1=0
189
- Book Load (0.0ms) SELECT "books".* FROM "books" WHERE 1=0
190
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
191
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)
192
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
193
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
194
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)
195
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
196
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
197
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 27)
198
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
199
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
200
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
201
-  (0.0ms) SAVEPOINT active_record_1
202
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
204
-  (0.0ms) SAVEPOINT active_record_1
205
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
207
-  (0.0ms) SAVEPOINT active_record_1
208
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
210
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
211
-  (0.0ms) SAVEPOINT active_record_1
212
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
214
-  (0.0ms) SAVEPOINT active_record_1
215
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
217
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
218
-  (0.0ms) SAVEPOINT active_record_1
219
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.129292"], ["email", "user16@example.com"], ["updated_at", "2014-06-08 22:13:52.129292"]]
220
-  (0.0ms) RELEASE SAVEPOINT active_record_1
221
-  (0.0ms) SAVEPOINT active_record_1
222
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
224
-  (0.0ms) SAVEPOINT active_record_1
225
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
227
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
228
-  (0.0ms) SAVEPOINT active_record_1
229
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.133534"], ["email", "user17@example.com"], ["updated_at", "2014-06-08 22:13:52.133534"]]
230
-  (0.0ms) RELEASE SAVEPOINT active_record_1
231
-  (0.0ms) SAVEPOINT active_record_1
232
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
234
-  (0.0ms) SAVEPOINT active_record_1
235
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
237
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
238
-  (0.0ms) SAVEPOINT active_record_1
239
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.139976"], ["email", "user18@example.com"], ["updated_at", "2014-06-08 22:13:52.139976"]]
240
-  (0.0ms) RELEASE SAVEPOINT active_record_1
241
-  (0.0ms) SAVEPOINT active_record_1
242
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
244
-  (0.0ms) SAVEPOINT active_record_1
245
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
247
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
248
-  (0.0ms) SAVEPOINT active_record_1
249
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.146626"], ["email", "user19@example.com"], ["updated_at", "2014-06-08 22:13:52.146626"]]
250
-  (0.0ms) RELEASE SAVEPOINT active_record_1
251
-  (0.0ms) SAVEPOINT active_record_1
252
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
254
-  (0.0ms) SAVEPOINT active_record_1
255
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
257
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
258
-  (0.0ms) SAVEPOINT active_record_1
259
- SQL (0.0ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.149590"], ["name", "Boring Specimen No. 2"], ["updated_at", "2014-06-08 22:13:52.149590"]]
260
-  (0.0ms) RELEASE SAVEPOINT active_record_1
261
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
262
-  (0.0ms) SAVEPOINT active_record_1
263
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.150992"], ["email", "user20@example.com"], ["updated_at", "2014-06-08 22:13:52.150992"]]
264
-  (0.0ms) RELEASE SAVEPOINT active_record_1
265
-  (0.0ms) SAVEPOINT active_record_1
266
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
268
-  (0.0ms) SAVEPOINT active_record_1
269
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
271
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
272
-  (0.1ms) SAVEPOINT active_record_1
273
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.156842"], ["email", "user21@example.com"], ["updated_at", "2014-06-08 22:13:52.156842"]]
274
-  (0.0ms) RELEASE SAVEPOINT active_record_1
275
-  (0.0ms) SAVEPOINT active_record_1
276
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
278
-  (0.0ms) SAVEPOINT active_record_1
279
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
281
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
282
-  (0.0ms) SAVEPOINT active_record_1
283
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
285
-  (0.0ms) SAVEPOINT active_record_1
286
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
288
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
289
-  (0.0ms) SAVEPOINT active_record_1
290
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
292
-  (0.0ms) SAVEPOINT active_record_1
293
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
295
-  (0.0ms) SAVEPOINT active_record_1
296
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
298
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
299
-  (0.0ms) SAVEPOINT active_record_1
300
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
302
-  (0.0ms) SAVEPOINT active_record_1
303
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
305
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
306
-  (0.0ms) SAVEPOINT active_record_1
307
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
309
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
310
-  (0.0ms) SAVEPOINT active_record_1
311
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
313
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)
314
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
315
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
316
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)
317
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
318
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
319
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)
320
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
321
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
322
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)
323
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
324
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
325
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (44, 45)
326
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (8)
327
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
328
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
329
-  (0.0ms) SAVEPOINT active_record_1
330
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
332
-  (0.0ms) SAVEPOINT active_record_1
333
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
335
-  (0.0ms) SAVEPOINT active_record_1
336
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
338
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
339
-  (0.0ms) SAVEPOINT active_record_1
340
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
342
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (47)
343
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (10)
344
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
345
-  (0.0ms) SAVEPOINT active_record_1
346
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
348
-  (0.0ms) SAVEPOINT active_record_1
349
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
351
-  (0.0ms) SAVEPOINT active_record_1
352
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
354
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
355
-  (0.0ms) SAVEPOINT active_record_1
356
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
358
-  (0.0ms) SAVEPOINT active_record_1
359
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
361
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
362
-  (0.0ms) SAVEPOINT active_record_1
363
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
365
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49, 50)
366
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49, 50)
367
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (11)
368
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49, 50)
369
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (11)
370
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (11)
371
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
372
-  (0.0ms) SAVEPOINT active_record_1
373
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.237195"], ["email", "user27@example.com"], ["updated_at", "2014-06-08 22:13:52.237195"]]
374
-  (0.0ms) RELEASE SAVEPOINT active_record_1
375
-  (0.0ms) SAVEPOINT active_record_1
376
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
378
-  (0.0ms) SAVEPOINT active_record_1
379
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
381
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
382
-  (0.0ms) SAVEPOINT active_record_1
383
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.244338"], ["email", "user28@example.com"], ["updated_at", "2014-06-08 22:13:52.244338"]]
384
-  (0.0ms) RELEASE SAVEPOINT active_record_1
385
-  (0.0ms) SAVEPOINT active_record_1
386
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
388
-  (0.0ms) SAVEPOINT active_record_1
389
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
391
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
392
-  (0.0ms) SAVEPOINT active_record_1
393
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
395
-  (0.0ms) SAVEPOINT active_record_1
396
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
398
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
399
-  (0.0ms) SAVEPOINT active_record_1
400
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
402
-  (0.0ms) SAVEPOINT active_record_1
403
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
405
-  (0.0ms) SAVEPOINT active_record_1
406
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
408
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
409
-  (0.0ms) SAVEPOINT active_record_1
410
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
412
-  (0.0ms) SAVEPOINT active_record_1
413
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
415
-  (0.0ms) SAVEPOINT active_record_1
416
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
418
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
419
-  (0.0ms) SAVEPOINT active_record_1
420
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
422
-  (0.0ms) SAVEPOINT active_record_1
423
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
425
-  (0.0ms) SAVEPOINT active_record_1
426
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
428
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
429
-  (0.0ms) SAVEPOINT active_record_1
430
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
432
-  (0.0ms) SAVEPOINT active_record_1
433
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
435
-  (0.0ms) SAVEPOINT active_record_1
436
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
438
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE 1=0
439
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
440
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
441
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (63)
442
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
443
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
444
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (63)
445
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
446
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
447
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (63, 64)
448
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
449
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
450
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
451
-  (0.0ms) SAVEPOINT active_record_1
452
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
454
-  (0.0ms) SAVEPOINT active_record_1
455
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
457
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
458
-  (0.0ms) SAVEPOINT active_record_1
459
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.308534"], ["email", "user34@example.com"], ["updated_at", "2014-06-08 22:13:52.308534"]]
460
-  (0.0ms) RELEASE SAVEPOINT active_record_1
461
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
462
-  (0.0ms) SAVEPOINT active_record_1
463
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.311653"], ["email", "user35@example.com"], ["updated_at", "2014-06-08 22:13:52.311653"]]
464
-  (0.0ms) RELEASE SAVEPOINT active_record_1
465
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
466
-  (0.0ms) SAVEPOINT active_record_1
467
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.313361"], ["email", "user36@example.com"], ["updated_at", "2014-06-08 22:13:52.313361"]]
468
-  (0.0ms) RELEASE SAVEPOINT active_record_1
469
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
470
-  (0.0ms) SAVEPOINT active_record_1
471
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.315380"], ["email", "user37@example.com"], ["updated_at", "2014-06-08 22:13:52.315380"]]
472
-  (0.0ms) RELEASE SAVEPOINT active_record_1
473
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
474
-  (0.0ms) SAVEPOINT active_record_1
475
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.316401"], ["email", "user38@example.com"], ["updated_at", "2014-06-08 22:13:52.316401"]]
476
-  (0.0ms) RELEASE SAVEPOINT active_record_1
477
-  (0.0ms) SAVEPOINT active_record_1
478
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
480
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE 1=0
481
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (37)
482
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (37)
483
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (37, 38)
484
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
485
-  (0.0ms) SAVEPOINT active_record_1
486
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
488
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
489
-  (0.0ms) SAVEPOINT active_record_1
490
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
492
-  (0.0ms) SAVEPOINT active_record_1
493
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
495
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE 1=0
496
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
497
-  (0.0ms) SAVEPOINT active_record_1
498
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
500
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
501
-  (0.0ms) SAVEPOINT active_record_1
502
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
504
-  (0.0ms) SAVEPOINT active_record_1
505
- SQL (0.0ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
507
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE 1=0
508
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (41)
509
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (41)
510
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (41, 42)
511
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
512
-  (0.0ms) SAVEPOINT active_record_1
513
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.342649"], ["email", "user43@example.com"], ["updated_at", "2014-06-08 22:13:52.342649"]]
514
-  (0.0ms) RELEASE SAVEPOINT active_record_1
515
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
516
-  (0.0ms) SAVEPOINT active_record_1
517
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.343801"], ["email", "user44@example.com"], ["updated_at", "2014-06-08 22:13:52.343801"]]
518
-  (0.0ms) RELEASE SAVEPOINT active_record_1
519
-  (0.0ms) SAVEPOINT active_record_1
520
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
522
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE 1=0
523
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
524
-  (0.0ms) SAVEPOINT active_record_1
525
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.350874"], ["email", "user45@example.com"], ["updated_at", "2014-06-08 22:13:52.350874"]]
526
-  (0.0ms) RELEASE SAVEPOINT active_record_1
527
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
528
-  (0.0ms) SAVEPOINT active_record_1
529
- SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.351921"], ["email", "user46@example.com"], ["updated_at", "2014-06-08 22:13:52.351921"]]
530
-  (0.0ms) RELEASE SAVEPOINT active_record_1
531
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
532
-  (0.0ms) SAVEPOINT active_record_1
533
- SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.352829"], ["email", "user47@example.com"], ["updated_at", "2014-06-08 22:13:52.352829"]]
534
-  (0.0ms) RELEASE SAVEPOINT active_record_1
535
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
536
-  (0.0ms) SAVEPOINT active_record_1
537
- SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.353755"], ["email", "user48@example.com"], ["updated_at", "2014-06-08 22:13:52.353755"]]
538
-  (0.0ms) RELEASE SAVEPOINT active_record_1
539
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
540
-  (0.0ms) SAVEPOINT active_record_1
541
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.354688"], ["email", "user49@example.com"], ["updated_at", "2014-06-08 22:13:52.354688"]]
542
-  (0.0ms) RELEASE SAVEPOINT active_record_1
543
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
544
-  (0.0ms) SAVEPOINT active_record_1
545
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.355630"], ["email", "user50@example.com"], ["updated_at", "2014-06-08 22:13:52.355630"]]
546
-  (0.0ms) RELEASE SAVEPOINT active_record_1
547
-  (0.0ms) SAVEPOINT active_record_1
548
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
550
-  (0.0ms) SAVEPOINT active_record_1
551
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
553
-  (0.0ms) SAVEPOINT active_record_1
554
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
556
-  (0.0ms) SAVEPOINT active_record_1
557
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
559
-  (0.0ms) SAVEPOINT active_record_1
560
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
562
-  (0.0ms) SAVEPOINT active_record_1
563
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
565
-  (0.0ms) SAVEPOINT active_record_1
566
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
568
-  (0.0ms) SAVEPOINT active_record_1
569
- SQL (0.0ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
571
-  (0.1ms) SAVEPOINT active_record_1
572
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
574
-  (0.0ms) SAVEPOINT active_record_1
575
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
577
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
578
-  (0.0ms) SAVEPOINT active_record_1
579
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
581
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
582
-  (0.0ms) SAVEPOINT active_record_1
583
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
585
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
586
-  (0.0ms) SAVEPOINT active_record_1
587
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
589
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
590
-  (0.0ms) SAVEPOINT active_record_1
591
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
593
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
594
-  (0.0ms) SAVEPOINT active_record_1
595
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
597
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
598
-  (0.0ms) SAVEPOINT active_record_1
599
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
601
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
602
-  (0.0ms) SAVEPOINT active_record_1
603
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
605
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
606
-  (0.0ms) SAVEPOINT active_record_1
607
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
609
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
610
-  (0.0ms) SAVEPOINT active_record_1
611
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
613
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
614
-  (0.0ms) SAVEPOINT active_record_1
615
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
617
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
618
-  (0.0ms) SAVEPOINT active_record_1
619
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.546190"], ["email", "user51@example.com"], ["updated_at", "2014-06-08 22:13:52.546190"]]
620
-  (0.0ms) RELEASE SAVEPOINT active_record_1
621
-  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
622
-  (0.0ms) SAVEPOINT active_record_1
623
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.547287"], ["email", "user52@example.com"], ["updated_at", "2014-06-08 22:13:52.547287"]]
624
-  (0.0ms) RELEASE SAVEPOINT active_record_1
625
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
626
-  (0.0ms) SAVEPOINT active_record_1
627
- SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.548232"], ["email", "user53@example.com"], ["updated_at", "2014-06-08 22:13:52.548232"]]
628
-  (0.0ms) RELEASE SAVEPOINT active_record_1
629
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
630
-  (0.0ms) SAVEPOINT active_record_1
631
- SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.549171"], ["email", "user54@example.com"], ["updated_at", "2014-06-08 22:13:52.549171"]]
632
-  (0.1ms) RELEASE SAVEPOINT active_record_1
633
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
634
-  (0.0ms) SAVEPOINT active_record_1
635
- SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.550070"], ["email", "user55@example.com"], ["updated_at", "2014-06-08 22:13:52.550070"]]
636
-  (0.0ms) RELEASE SAVEPOINT active_record_1
637
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
638
-  (0.0ms) SAVEPOINT active_record_1
639
- SQL (0.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.550978"], ["email", "user56@example.com"], ["updated_at", "2014-06-08 22:13:52.550978"]]
640
-  (0.0ms) RELEASE SAVEPOINT active_record_1
641
-  (0.0ms) SAVEPOINT active_record_1
642
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
644
-  (0.0ms) SAVEPOINT active_record_1
645
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
647
-  (0.0ms) SAVEPOINT active_record_1
648
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
650
-  (0.0ms) SAVEPOINT active_record_1
651
- SQL (0.0ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
653
-  (0.0ms) SAVEPOINT active_record_1
654
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
656
-  (0.0ms) SAVEPOINT active_record_1
657
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
659
-  (0.0ms) SAVEPOINT active_record_1
660
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
662
-  (0.0ms) SAVEPOINT active_record_1
663
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
665
-  (0.0ms) SAVEPOINT active_record_1
666
- SQL (0.0ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
668
-  (0.0ms) SAVEPOINT active_record_1
669
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
671
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
672
-  (0.0ms) SAVEPOINT active_record_1
673
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
675
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
676
-  (0.0ms) SAVEPOINT active_record_1
677
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
679
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
680
-  (0.1ms) SAVEPOINT active_record_1
681
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
683
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
684
-  (0.0ms) SAVEPOINT active_record_1
685
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
687
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
688
-  (0.0ms) SAVEPOINT active_record_1
689
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
691
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
692
-  (0.0ms) SAVEPOINT active_record_1
693
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
695
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
696
-  (0.0ms) SAVEPOINT active_record_1
697
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
699
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
700
-  (0.0ms) SAVEPOINT active_record_1
701
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
703
-  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
704
-  (0.0ms) SAVEPOINT active_record_1
705
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
707
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
708
-  (0.0ms) SAVEPOINT active_record_1
709
- SQL (0.0ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
711
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
712
-  (0.1ms) SAVEPOINT active_record_1
713
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.698148"], ["email", "user57@example.com"], ["updated_at", "2014-06-08 22:13:52.698148"]]
714
-  (0.1ms) RELEASE SAVEPOINT active_record_1
715
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
716
-  (0.0ms) SAVEPOINT active_record_1
717
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.699724"], ["email", "user58@example.com"], ["updated_at", "2014-06-08 22:13:52.699724"]]
718
-  (0.1ms) RELEASE SAVEPOINT active_record_1
719
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
720
-  (0.0ms) SAVEPOINT active_record_1
721
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.701156"], ["email", "user59@example.com"], ["updated_at", "2014-06-08 22:13:52.701156"]]
722
-  (0.1ms) RELEASE SAVEPOINT active_record_1
723
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
724
-  (0.0ms) SAVEPOINT active_record_1
725
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.702555"], ["email", "user60@example.com"], ["updated_at", "2014-06-08 22:13:52.702555"]]
726
-  (0.1ms) RELEASE SAVEPOINT active_record_1
727
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
728
-  (0.1ms) SAVEPOINT active_record_1
729
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.703847"], ["email", "user61@example.com"], ["updated_at", "2014-06-08 22:13:52.703847"]]
730
-  (0.0ms) RELEASE SAVEPOINT active_record_1
731
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
732
-  (0.1ms) SAVEPOINT active_record_1
733
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:52.705412"], ["email", "user62@example.com"], ["updated_at", "2014-06-08 22:13:52.705412"]]
734
-  (0.0ms) RELEASE SAVEPOINT active_record_1
735
-  (0.0ms) SAVEPOINT active_record_1
736
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
738
-  (0.1ms) SAVEPOINT active_record_1
739
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
741
-  (0.1ms) SAVEPOINT active_record_1
742
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
744
-  (0.1ms) SAVEPOINT active_record_1
745
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
747
-  (0.1ms) SAVEPOINT active_record_1
748
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
750
-  (0.1ms) SAVEPOINT active_record_1
751
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
753
-  (0.1ms) SAVEPOINT active_record_1
754
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
756
-  (0.1ms) SAVEPOINT active_record_1
757
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
759
-  (0.1ms) SAVEPOINT active_record_1
760
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
762
-  (0.1ms) SAVEPOINT active_record_1
763
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
765
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
766
-  (0.1ms) SAVEPOINT active_record_1
767
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
769
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
770
-  (0.1ms) SAVEPOINT active_record_1
771
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
773
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
774
-  (0.1ms) SAVEPOINT active_record_1
775
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
777
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
778
-  (0.1ms) SAVEPOINT active_record_1
779
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
781
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
782
-  (0.1ms) SAVEPOINT active_record_1
783
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
785
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
786
-  (0.1ms) SAVEPOINT active_record_1
787
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
789
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
790
-  (0.1ms) SAVEPOINT active_record_1
791
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
793
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
794
-  (0.1ms) SAVEPOINT active_record_1
795
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
797
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
798
-  (0.0ms) SAVEPOINT active_record_1
799
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
801
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
802
-  (0.1ms) SAVEPOINT active_record_1
803
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
805
-  (0.1ms) SELECT COUNT(*) FROM "users"
806
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (90, 91, 92)
807
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (93, 94, 95)
808
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (36, 37, 38)
809
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (33, 34, 35)
810
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
811
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
812
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
813
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
814
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
815
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (99, 98)
816
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
817
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
818
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
819
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
820
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
821
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40, 39)
822
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
823
-  (0.1ms) SAVEPOINT active_record_1
824
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
826
-  (0.0ms) SAVEPOINT active_record_1
827
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
829
-  (0.0ms) SAVEPOINT active_record_1
830
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
832
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
833
-  (0.0ms) SAVEPOINT active_record_1
834
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
836
-  (0.1ms) SAVEPOINT active_record_1
837
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
839
-  (0.1ms) SAVEPOINT active_record_1
840
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
842
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
843
-  (0.1ms) SAVEPOINT active_record_1
844
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
846
-  (0.0ms) SAVEPOINT active_record_1
847
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
849
-  (0.1ms) SAVEPOINT active_record_1
850
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
852
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
853
-  (0.1ms) SAVEPOINT active_record_1
854
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
856
-  (0.1ms) SAVEPOINT active_record_1
857
- SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
859
-  (0.1ms) SAVEPOINT active_record_1
860
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
862
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
863
-  (0.1ms) SAVEPOINT active_record_1
864
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
866
-  (0.1ms) SAVEPOINT active_record_1
867
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
869
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
870
-  (0.1ms) SAVEPOINT active_record_1
871
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.099822"], ["email", "user67@example.com"], ["updated_at", "2014-06-08 22:13:53.099822"]]
872
-  (0.1ms) RELEASE SAVEPOINT active_record_1
873
-  (0.1ms) SAVEPOINT active_record_1
874
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
876
-  (0.1ms) SAVEPOINT active_record_1
877
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
879
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
880
-  (0.1ms) SAVEPOINT active_record_1
881
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.111326"], ["email", "user68@example.com"], ["updated_at", "2014-06-08 22:13:53.111326"]]
882
-  (0.1ms) RELEASE SAVEPOINT active_record_1
883
-  (0.1ms) SAVEPOINT active_record_1
884
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
886
-  (0.1ms) SAVEPOINT active_record_1
887
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
889
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE 1=0
890
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
891
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
892
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)
893
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
894
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
895
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)
896
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
897
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
898
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111, 112)
899
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
900
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
901
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
902
-  (0.1ms) SAVEPOINT active_record_1
903
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.137629"], ["email", "user69@example.com"], ["updated_at", "2014-06-08 22:13:53.137629"]]
904
-  (0.1ms) RELEASE SAVEPOINT active_record_1
905
-  (0.1ms) SAVEPOINT active_record_1
906
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
908
-  (0.1ms) SAVEPOINT active_record_1
909
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
911
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
912
-  (0.1ms) SAVEPOINT active_record_1
913
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
915
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (113)
916
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (44)
917
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
918
-  (0.1ms) SAVEPOINT active_record_1
919
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.157296"], ["email", "user70@example.com"], ["updated_at", "2014-06-08 22:13:53.157296"]]
920
-  (0.1ms) RELEASE SAVEPOINT active_record_1
921
-  (0.0ms) SAVEPOINT active_record_1
922
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
924
-  (0.0ms) SAVEPOINT active_record_1
925
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
927
-  (0.2ms) SELECT MAX("users"."id") AS max_id FROM "users"
928
-  (0.1ms) SAVEPOINT active_record_1
929
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.167391"], ["email", "user71@example.com"], ["updated_at", "2014-06-08 22:13:53.167391"]]
930
-  (0.1ms) RELEASE SAVEPOINT active_record_1
931
-  (0.1ms) SAVEPOINT active_record_1
932
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
934
-  (0.0ms) SAVEPOINT active_record_1
935
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
937
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
938
-  (0.0ms) SAVEPOINT active_record_1
939
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
941
-  (0.1ms) SAVEPOINT active_record_1
942
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
944
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
945
-  (0.1ms) SAVEPOINT active_record_1
946
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
948
-  (0.1ms) SAVEPOINT active_record_1
949
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
951
-  (0.1ms) SAVEPOINT active_record_1
952
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
954
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
955
-  (0.1ms) SAVEPOINT active_record_1
956
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
958
-  (0.1ms) SAVEPOINT active_record_1
959
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
961
-  (0.1ms) SAVEPOINT active_record_1
962
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
964
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
965
-  (0.1ms) SAVEPOINT active_record_1
966
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
968
-  (0.1ms) SAVEPOINT active_record_1
969
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
971
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
972
-  (0.1ms) SAVEPOINT active_record_1
973
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
975
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
976
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
977
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (46)
978
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
979
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (46)
980
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (46)
981
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
982
-  (0.1ms) SAVEPOINT active_record_1
983
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.243391"], ["email", "user75@example.com"], ["updated_at", "2014-06-08 22:13:53.243391"]]
984
-  (0.1ms) RELEASE SAVEPOINT active_record_1
985
-  (0.1ms) SAVEPOINT active_record_1
986
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
988
-  (0.1ms) SAVEPOINT active_record_1
989
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
991
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
992
-  (0.1ms) SAVEPOINT active_record_1
993
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.249473"], ["email", "user76@example.com"], ["updated_at", "2014-06-08 22:13:53.249473"]]
994
-  (0.1ms) RELEASE SAVEPOINT active_record_1
995
-  (0.1ms) SAVEPOINT active_record_1
996
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
998
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
999
-  (0.0ms) SAVEPOINT active_record_1
1000
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1002
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1003
-  (0.1ms) SAVEPOINT active_record_1
1004
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1006
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
1007
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
1008
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1009
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
1010
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
1011
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1012
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
1013
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
1014
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1015
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
1016
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
1017
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1018
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (125, 126)
1019
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
1020
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1021
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1022
-  (0.1ms) SAVEPOINT active_record_1
1023
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.311393"], ["email", "user77@example.com"], ["updated_at", "2014-06-08 22:13:53.311393"]]
1024
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1025
-  (0.0ms) SAVEPOINT active_record_1
1026
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1028
-  (0.0ms) SAVEPOINT active_record_1
1029
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1031
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1032
-  (0.1ms) SAVEPOINT active_record_1
1033
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.323453"], ["email", "user78@example.com"], ["updated_at", "2014-06-08 22:13:53.323453"]]
1034
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1035
-  (0.1ms) SAVEPOINT active_record_1
1036
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1038
-  (0.1ms) SAVEPOINT active_record_1
1039
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1041
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1042
-  (0.1ms) SAVEPOINT active_record_1
1043
- SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.328594"], ["name", "Boring Specimen No. 3"], ["updated_at", "2014-06-08 22:13:53.328594"]]
1044
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1045
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1046
-  (0.1ms) SAVEPOINT active_record_1
1047
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.331525"], ["email", "user79@example.com"], ["updated_at", "2014-06-08 22:13:53.331525"]]
1048
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1049
-  (0.1ms) SAVEPOINT active_record_1
1050
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1052
-  (0.1ms) SAVEPOINT active_record_1
1053
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1055
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1056
-  (0.1ms) SAVEPOINT active_record_1
1057
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.336472"], ["email", "user80@example.com"], ["updated_at", "2014-06-08 22:13:53.336472"]]
1058
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1059
-  (0.0ms) SAVEPOINT active_record_1
1060
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1062
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1063
-  (0.1ms) SAVEPOINT active_record_1
1064
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1066
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (132, 133)
1067
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (132, 133)
1068
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
1069
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (132, 133)
1070
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
1071
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
1072
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1073
-  (0.1ms) SAVEPOINT active_record_1
1074
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1076
-  (0.1ms) SAVEPOINT active_record_1
1077
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1079
-  (0.1ms) SAVEPOINT active_record_1
1080
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1082
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1083
-  (0.1ms) SAVEPOINT active_record_1
1084
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1086
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (135)
1087
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (50)
1088
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1089
-  (0.1ms) SAVEPOINT active_record_1
1090
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1092
-  (0.0ms) SAVEPOINT active_record_1
1093
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1095
-  (0.0ms) SAVEPOINT active_record_1
1096
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1098
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1099
-  (0.1ms) SAVEPOINT active_record_1
1100
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1102
-  (0.1ms) SAVEPOINT active_record_1
1103
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1105
-  (0.1ms) SAVEPOINT active_record_1
1106
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1108
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1109
-  (0.1ms) SAVEPOINT active_record_1
1110
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1112
-  (0.1ms) SAVEPOINT active_record_1
1113
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1115
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1116
-  (0.0ms) SAVEPOINT active_record_1
1117
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1119
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1120
-  (0.1ms) SAVEPOINT active_record_1
1121
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1123
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)
1124
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
1125
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1126
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)
1127
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
1128
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1129
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)
1130
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
1131
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1132
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)
1133
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
1134
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1135
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (139, 140)
1136
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
1137
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1138
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1139
-  (0.1ms) SAVEPOINT active_record_1
1140
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1142
-  (0.1ms) SAVEPOINT active_record_1
1143
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1145
-  (0.1ms) SAVEPOINT active_record_1
1146
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1148
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1149
-  (0.1ms) SAVEPOINT active_record_1
1150
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1152
-  (0.1ms) SAVEPOINT active_record_1
1153
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1155
-  (0.1ms) SAVEPOINT active_record_1
1156
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1158
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1159
-  (0.1ms) SAVEPOINT active_record_1
1160
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1162
-  (0.1ms) SAVEPOINT active_record_1
1163
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1165
-  (0.0ms) SAVEPOINT active_record_1
1166
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1168
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1169
-  (0.1ms) SAVEPOINT active_record_1
1170
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1172
-  (0.0ms) SAVEPOINT active_record_1
1173
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1175
-  (0.0ms) SAVEPOINT active_record_1
1176
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1178
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1179
-  (0.1ms) SAVEPOINT active_record_1
1180
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1182
-  (0.0ms) SAVEPOINT active_record_1
1183
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1185
-  (0.0ms) SAVEPOINT active_record_1
1186
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1188
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1189
-  (0.0ms) SAVEPOINT active_record_1
1190
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1192
-  (0.0ms) SAVEPOINT active_record_1
1193
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1195
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1196
-  (0.1ms) SAVEPOINT active_record_1
1197
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.485989"], ["email", "user90@example.com"], ["updated_at", "2014-06-08 22:13:53.485989"]]
1198
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1199
-  (0.0ms) SAVEPOINT active_record_1
1200
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1202
-  (0.0ms) SAVEPOINT active_record_1
1203
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1205
- Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE 1=0
1206
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
1207
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1208
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (153)
1209
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
1210
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1211
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (153)
1212
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
1213
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1214
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (153, 154)
1215
- Book Load (0.1ms) SELECT "books".* FROM "books" WHERE 1=0
1216
- Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND 1=0
1217
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1218
-  (0.1ms) SAVEPOINT active_record_1
1219
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.507563"], ["email", "user91@example.com"], ["updated_at", "2014-06-08 22:13:53.507563"]]
1220
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1221
-  (0.0ms) SAVEPOINT active_record_1
1222
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1224
-  (0.1ms) SAVEPOINT active_record_1
1225
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1227
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1228
-  (0.1ms) SAVEPOINT active_record_1
1229
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.516431"], ["email", "user92@example.com"], ["updated_at", "2014-06-08 22:13:53.516431"]]
1230
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1231
-  (0.1ms) SAVEPOINT active_record_1
1232
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1234
-  (0.1ms) SAVEPOINT active_record_1
1235
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1237
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1238
-  (0.0ms) SAVEPOINT active_record_1
1239
- SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.521532"], ["name", "Boring Specimen No. 4"], ["updated_at", "2014-06-08 22:13:53.521532"]]
1240
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1241
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1242
-  (0.0ms) SAVEPOINT active_record_1
1243
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.523922"], ["email", "user93@example.com"], ["updated_at", "2014-06-08 22:13:53.523922"]]
1244
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1245
-  (0.0ms) SAVEPOINT active_record_1
1246
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1248
-  (0.0ms) SAVEPOINT active_record_1
1249
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1251
-  (0.2ms) SELECT MAX("users"."id") AS max_id FROM "users"
1252
-  (0.1ms) SAVEPOINT active_record_1
1253
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:53.532115"], ["email", "user94@example.com"], ["updated_at", "2014-06-08 22:13:53.532115"]]
1254
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1255
-  (0.0ms) SAVEPOINT active_record_1
1256
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1258
-  (0.0ms) SAVEPOINT active_record_1
1259
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1261
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1262
-  (0.0ms) SAVEPOINT active_record_1
1263
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1265
-  (0.1ms) SAVEPOINT active_record_1
1266
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1268
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1269
-  (0.1ms) SAVEPOINT active_record_1
1270
- SQL (0.2ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1272
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1273
-  (0.1ms) SAVEPOINT active_record_1
1274
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1276
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1277
-  (0.1ms) SAVEPOINT active_record_1
1278
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1280
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1281
-  (0.1ms) SAVEPOINT active_record_1
1282
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1284
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1285
-  (0.3ms) SAVEPOINT active_record_1
1286
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1288
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1289
-  (0.1ms) SAVEPOINT active_record_1
1290
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1292
-  (0.1ms) SAVEPOINT active_record_1
1293
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1295
-  (0.0ms) SAVEPOINT active_record_1
1296
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1298
-  (0.0ms) SAVEPOINT active_record_1
1299
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1301
-  (0.0ms) SAVEPOINT active_record_1
1302
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1304
-  (0.0ms) SAVEPOINT active_record_1
1305
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1307
-  (0.1ms) SAVEPOINT active_record_1
1308
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1310
-  (0.1ms) SAVEPOINT active_record_1
1311
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1313
-  (0.1ms) SAVEPOINT active_record_1
1314
- SQL (0.2ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1316
-  (0.1ms) SAVEPOINT active_record_1
1317
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1319
-  (0.1ms) SAVEPOINT active_record_1
1320
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1322
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1323
-  (0.1ms) SAVEPOINT active_record_1
1324
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1326
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1327
-  (0.1ms) SAVEPOINT active_record_1
1328
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1330
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1331
-  (0.1ms) SAVEPOINT active_record_1
1332
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1334
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1335
-  (0.1ms) SAVEPOINT active_record_1
1336
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1338
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1339
-  (0.1ms) SAVEPOINT active_record_1
1340
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1342
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1343
-  (0.1ms) SAVEPOINT active_record_1
1344
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1346
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1347
-  (0.1ms) SAVEPOINT active_record_1
1348
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1350
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1351
-  (0.1ms) SAVEPOINT active_record_1
1352
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1354
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1355
-  (0.0ms) SAVEPOINT active_record_1
1356
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1358
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1359
-  (0.1ms) SAVEPOINT active_record_1
1360
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1362
-  (0.1ms) SELECT COUNT(*) FROM "users"
1363
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (97, 99, 98, 96, 100)
1364
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1365
-  (0.1ms) SAVEPOINT active_record_1
1366
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1368
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1369
-  (0.0ms) SAVEPOINT active_record_1
1370
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1372
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1373
-  (0.0ms) SAVEPOINT active_record_1
1374
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1376
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1377
-  (0.1ms) SAVEPOINT active_record_1
1378
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1380
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1381
-  (0.0ms) SAVEPOINT active_record_1
1382
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1384
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1385
-  (0.0ms) SAVEPOINT active_record_1
1386
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1388
-  (0.1ms) SAVEPOINT active_record_1
1389
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1391
-  (0.0ms) SAVEPOINT active_record_1
1392
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1394
-  (0.1ms) SAVEPOINT active_record_1
1395
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1397
-  (0.0ms) SAVEPOINT active_record_1
1398
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1400
-  (0.0ms) SAVEPOINT active_record_1
1401
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1403
-  (0.1ms) SAVEPOINT active_record_1
1404
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1406
-  (0.1ms) SAVEPOINT active_record_1
1407
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1409
-  (0.1ms) SAVEPOINT active_record_1
1410
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1412
-  (0.1ms) SAVEPOINT active_record_1
1413
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1415
-  (0.0ms) SAVEPOINT active_record_1
1416
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1418
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1419
-  (0.0ms) SAVEPOINT active_record_1
1420
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1422
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1423
-  (0.1ms) SAVEPOINT active_record_1
1424
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1426
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1427
-  (0.0ms) SAVEPOINT active_record_1
1428
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1430
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1431
-  (0.1ms) SAVEPOINT active_record_1
1432
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1434
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1435
-  (0.0ms) SAVEPOINT active_record_1
1436
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1438
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1439
-  (0.1ms) SAVEPOINT active_record_1
1440
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1442
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1443
-  (0.0ms) SAVEPOINT active_record_1
1444
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1446
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1447
-  (0.1ms) SAVEPOINT active_record_1
1448
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1450
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1451
-  (0.0ms) SAVEPOINT active_record_1
1452
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1454
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1455
-  (0.1ms) SAVEPOINT active_record_1
1456
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1458
-  (0.1ms) SELECT COUNT(*) FROM "users"
1459
- Movie Load (0.3ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)
1460
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)
1461
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)
1462
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (183, 182)
1463
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)
1464
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)
1465
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)
1466
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (72, 71)
1467
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1468
-  (0.1ms) SAVEPOINT active_record_1
1469
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.183034"], ["email", "user107@example.com"], ["updated_at", "2014-06-08 22:13:54.183034"]]
1470
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1471
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1472
-  (0.1ms) SAVEPOINT active_record_1
1473
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.185165"], ["email", "user108@example.com"], ["updated_at", "2014-06-08 22:13:54.185165"]]
1474
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1475
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1476
-  (0.1ms) SAVEPOINT active_record_1
1477
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.187020"], ["email", "user109@example.com"], ["updated_at", "2014-06-08 22:13:54.187020"]]
1478
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1479
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1480
-  (0.1ms) SAVEPOINT active_record_1
1481
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.188962"], ["email", "user110@example.com"], ["updated_at", "2014-06-08 22:13:54.188962"]]
1482
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1483
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1484
-  (0.1ms) SAVEPOINT active_record_1
1485
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.190830"], ["email", "user111@example.com"], ["updated_at", "2014-06-08 22:13:54.190830"]]
1486
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1487
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1488
-  (0.1ms) SAVEPOINT active_record_1
1489
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.192777"], ["email", "user112@example.com"], ["updated_at", "2014-06-08 22:13:54.192777"]]
1490
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1491
-  (0.1ms) SAVEPOINT active_record_1
1492
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1494
-  (0.1ms) SAVEPOINT active_record_1
1495
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1497
-  (0.0ms) SAVEPOINT active_record_1
1498
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1500
-  (0.0ms) SAVEPOINT active_record_1
1501
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1503
-  (0.1ms) SAVEPOINT active_record_1
1504
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1506
-  (0.1ms) SAVEPOINT active_record_1
1507
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1509
-  (0.0ms) SAVEPOINT active_record_1
1510
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1512
-  (0.1ms) SAVEPOINT active_record_1
1513
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1515
-  (0.0ms) SAVEPOINT active_record_1
1516
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1518
-  (0.1ms) SAVEPOINT active_record_1
1519
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1521
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1522
-  (0.1ms) SAVEPOINT active_record_1
1523
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1525
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1526
-  (0.0ms) SAVEPOINT active_record_1
1527
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1529
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1530
-  (0.1ms) SAVEPOINT active_record_1
1531
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1533
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1534
-  (0.0ms) SAVEPOINT active_record_1
1535
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1537
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1538
-  (0.1ms) SAVEPOINT active_record_1
1539
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1541
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1542
-  (0.0ms) SAVEPOINT active_record_1
1543
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1545
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1546
-  (0.1ms) SAVEPOINT active_record_1
1547
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1549
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1550
-  (0.0ms) SAVEPOINT active_record_1
1551
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1553
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1554
-  (0.0ms) SAVEPOINT active_record_1
1555
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1557
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1558
-  (0.0ms) SAVEPOINT active_record_1
1559
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1561
-  (0.1ms) SELECT COUNT(*) FROM "users"
1562
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (82, 81)
1563
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (109, 111, 110, 108, 112)
1564
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (107, 111, 110, 108, 112)
1565
-  (0.1ms) SAVEPOINT active_record_1
1566
- SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 107]]
1567
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1568
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (111, 110, 108, 112)
1569
-  (0.1ms) SAVEPOINT active_record_1
1570
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1572
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1573
-  (0.1ms) SAVEPOINT active_record_1
1574
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1576
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1577
-  (0.0ms) SAVEPOINT active_record_1
1578
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1580
-  (0.1ms) SAVEPOINT active_record_1
1581
- SQL (0.2ms) INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.563120"], ["updated_at", "2014-06-08 22:13:54.563120"]]
1582
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1583
-  (0.1ms) SAVEPOINT active_record_1
1584
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1586
-  (0.1ms) SAVEPOINT active_record_1
1587
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1589
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1590
-  (0.1ms) SAVEPOINT active_record_1
1591
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.569285"], ["email", "user113@example.com"], ["updated_at", "2014-06-08 22:13:54.569285"]]
1592
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1593
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1594
-  (0.1ms) SAVEPOINT active_record_1
1595
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.571294"], ["email", "user114@example.com"], ["updated_at", "2014-06-08 22:13:54.571294"]]
1596
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1597
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (195, 194)
1598
-  (0.1ms) SAVEPOINT active_record_1
1599
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1601
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1602
-  (0.1ms) SAVEPOINT active_record_1
1603
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1605
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1606
-  (0.1ms) SAVEPOINT active_record_1
1607
- SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.592194"], ["name", "Boring Specimen No. 6"], ["updated_at", "2014-06-08 22:13:54.592194"]]
1608
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1609
-  (0.1ms) SAVEPOINT active_record_1
1610
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1612
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1613
-  (0.1ms) SAVEPOINT active_record_1
1614
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1616
-  (0.1ms) SAVEPOINT active_record_1
1617
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1619
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1620
-  (0.1ms) SAVEPOINT active_record_1
1621
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1623
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1624
-  (0.1ms) SAVEPOINT active_record_1
1625
- SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.607738"], ["name", "Boring Specimen No. 7"], ["updated_at", "2014-06-08 22:13:54.607738"]]
1626
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1627
-  (0.0ms) SAVEPOINT active_record_1
1628
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1630
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1631
-  (0.1ms) SAVEPOINT active_record_1
1632
- SQL (1.5ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1634
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1635
-  (0.1ms) SAVEPOINT active_record_1
1636
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1638
-  (0.2ms) SELECT MAX("users"."id") AS max_id FROM "users"
1639
-  (0.1ms) SAVEPOINT active_record_1
1640
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1642
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1643
-  (0.1ms) SAVEPOINT active_record_1
1644
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1646
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (88, 89, 87)
1647
-  (0.1ms) SAVEPOINT active_record_1
1648
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1650
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1651
-  (0.1ms) SAVEPOINT active_record_1
1652
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1654
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1655
-  (0.1ms) SAVEPOINT active_record_1
1656
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1658
-  (0.1ms) SAVEPOINT active_record_1
1659
- SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.660779"], ["updated_at", "2014-06-08 22:13:54.660779"]]
1660
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1661
-  (0.1ms) SAVEPOINT active_record_1
1662
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1664
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1665
-  (0.1ms) SAVEPOINT active_record_1
1666
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1668
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1669
-  (0.1ms) SAVEPOINT active_record_1
1670
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1672
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1673
-  (0.1ms) SAVEPOINT active_record_1
1674
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1676
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1677
-  (0.1ms) SAVEPOINT active_record_1
1678
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1680
-  (0.1ms) SAVEPOINT active_record_1
1681
- SQL (0.2ms) DELETE FROM "movies" WHERE "movies"."type" IN ('Documentary') AND "movies"."id" = ? [["id", 200]]
1682
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1683
-  (0.1ms) SELECT COUNT(*) FROM "movies" WHERE 1=0
1684
-  (0.1ms) SELECT COUNT(*) FROM "books" WHERE 1=0
1685
-  (0.1ms) SAVEPOINT active_record_1
1686
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1688
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1689
-  (0.1ms) SAVEPOINT active_record_1
1690
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1692
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1693
-  (0.1ms) SAVEPOINT active_record_1
1694
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1696
-  (0.1ms) SAVEPOINT active_record_1
1697
- SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.697878"], ["updated_at", "2014-06-08 22:13:54.697878"]]
1698
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1699
-  (0.1ms) SAVEPOINT active_record_1
1700
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1702
-  (0.1ms) SAVEPOINT active_record_1
1703
- SQL (0.2ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "red"], ["created_at", "2014-06-08 22:13:54.701517"], ["type", "Car"], ["updated_at", "2014-06-08 22:13:54.701517"]]
1704
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1705
-  (0.1ms) SAVEPOINT active_record_1
1706
- SQL (0.2ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1708
-  (0.1ms) SAVEPOINT active_record_1
1709
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1711
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1712
-  (0.1ms) SAVEPOINT active_record_1
1713
- SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1715
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1716
-  (0.1ms) SAVEPOINT active_record_1
1717
- SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.719868"], ["name", "Boring Specimen No. 10"], ["updated_at", "2014-06-08 22:13:54.719868"]]
1718
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1719
-  (0.0ms) SAVEPOINT active_record_1
1720
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1722
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1723
-  (0.0ms) SAVEPOINT active_record_1
1724
- SQL (0.1ms) 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
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1726
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1727
-  (0.1ms) SAVEPOINT active_record_1
1728
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1730
-  (0.3ms) SELECT MAX("users"."id") AS max_id FROM "users"
1731
-  (0.1ms) SAVEPOINT active_record_1
1732
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1734
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1735
-  (0.1ms) SAVEPOINT active_record_1
1736
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1738
- Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (93, 94, 92)
1739
-  (0.1ms) SAVEPOINT active_record_1
1740
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1742
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1743
-  (0.1ms) SAVEPOINT active_record_1
1744
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1746
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1747
-  (0.1ms) SAVEPOINT active_record_1
1748
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1750
-  (0.0ms) SAVEPOINT active_record_1
1751
- SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.754663"], ["updated_at", "2014-06-08 22:13:54.754663"]]
1752
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1753
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1754
-  (0.0ms) SAVEPOINT active_record_1
1755
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.756497"], ["email", "user124@example.com"], ["updated_at", "2014-06-08 22:13:54.756497"]]
1756
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1757
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1758
-  (0.1ms) SAVEPOINT active_record_1
1759
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.759705"], ["email", "user125@example.com"], ["updated_at", "2014-06-08 22:13:54.759705"]]
1760
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1761
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1762
-  (0.1ms) SAVEPOINT active_record_1
1763
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.761661"], ["email", "user126@example.com"], ["updated_at", "2014-06-08 22:13:54.761661"]]
1764
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1765
-  (0.1ms) SAVEPOINT active_record_1
1766
- SQL (0.1ms) DELETE FROM "movies" WHERE "movies"."id" = ? [["id", 204]]
1767
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1768
-  (0.0ms) SAVEPOINT active_record_1
1769
- SQL (0.2ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 95]]
1770
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1771
-  (0.1ms) SELECT COUNT(*) FROM "movies" WHERE 1=0
1772
-  (0.1ms) SELECT COUNT(*) FROM "books" WHERE 1=0
1773
-  (0.1ms) SAVEPOINT active_record_1
1774
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1776
-  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
1777
-  (0.1ms) SAVEPOINT active_record_1
1778
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1780
-  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
1781
-  (0.1ms) SAVEPOINT active_record_1
1782
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1784
-  (0.1ms) SAVEPOINT active_record_1
1785
- SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "updated_at") VALUES (?, ?, ?) [["color", "blue"], ["created_at", "2014-06-08 22:13:54.805108"], ["updated_at", "2014-06-08 22:13:54.805108"]]
1786
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1787
-  (0.1ms) SAVEPOINT active_record_1
1788
- SQL (0.1ms) 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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1790
-  (0.1ms) SAVEPOINT active_record_1
1791
- SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["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
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1793
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1794
-  (0.1ms) SAVEPOINT active_record_1
1795
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.810998"], ["email", "user127@example.com"], ["updated_at", "2014-06-08 22:13:54.810998"]]
1796
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1797
-  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
1798
-  (0.0ms) SAVEPOINT active_record_1
1799
- SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-06-08 22:13:54.812935"], ["email", "user128@example.com"], ["updated_at", "2014-06-08 22:13:54.812935"]]
1800
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1801
- Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)
1802
-  (0.6ms) rollback transaction