recommendable 2.1.2 → 2.1.3

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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/lib/recommendable/helpers/redis_key_mapper.rb +23 -6
  3. data/lib/recommendable/ratable.rb +16 -3
  4. data/lib/recommendable/version.rb +10 -5
  5. data/test/dummy/app/models/boat.rb +3 -0
  6. data/test/dummy/app/models/book.rb +1 -1
  7. data/test/dummy/app/models/car.rb +4 -0
  8. data/test/dummy/app/models/documentary.rb +3 -0
  9. data/test/dummy/app/models/movie.rb +1 -1
  10. data/test/dummy/app/models/rock.rb +1 -1
  11. data/test/dummy/app/models/user.rb +2 -2
  12. data/test/dummy/app/models/vehicle.rb +3 -0
  13. data/test/dummy/config/application.rb +1 -1
  14. data/test/dummy/config/environments/development.rb +5 -5
  15. data/test/dummy/config/environments/test.rb +5 -5
  16. data/test/dummy/db/development.sqlite3 +0 -0
  17. data/test/dummy/db/migrate/20131226071447_create_vehicles.rb +10 -0
  18. data/test/dummy/db/migrate/20131226165647_add_type_to_movie.rb +5 -0
  19. data/test/dummy/db/schema.rb +22 -14
  20. data/test/dummy/db/test.sqlite3 +0 -0
  21. data/test/dummy/log/test.log +3164 -0
  22. data/test/factories.rb +20 -0
  23. data/test/recommendable/helpers/calculations_test.rb +2 -1
  24. data/test/recommendable/helpers/redis_key_mapper_test.rb +65 -0
  25. data/test/recommendable/ratable_test.rb +87 -1
  26. data/test/recommendable/rater/bookmarker_test.rb +29 -2
  27. data/test/recommendable/rater/disliker_test.rb +29 -2
  28. data/test/recommendable/rater/hider_test.rb +27 -1
  29. data/test/recommendable/rater/liker_test.rb +29 -2
  30. data/test/recommendable/rater/recommender_test.rb +2 -1
  31. data/test/test_helper.rb +1 -2
  32. metadata +41 -46
  33. data/test/dummy/db/test.sqlite3-journal +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e44dc53247934da06e22837f604ec9b91bcb813
4
- data.tar.gz: f55ced78d70098fc404eb79fd67044503f6e1840
3
+ metadata.gz: 213522a52202788916de5834e1a8a585266d954d
4
+ data.tar.gz: e54f03c20982d91e83e5f6426f2d696ebf266077
5
5
  SHA512:
6
- metadata.gz: 3b016dd50c5afba08c8b52825dfb04b718d8233068f3397381aa7b9e518351f667d67bbe11bbe21f54d21dbf18cd8a022e4d38a65aae2668cce8c0c1c61919f9
7
- data.tar.gz: f12a6b4d1d448940af822410f1a4da5b9485c371e52f08439b0ed9c3d019b5538293332aa34f4e6234e9959edd5288cab1e2b0f3e420b8e4cfa1443bb253a2a4
6
+ metadata.gz: 0530a9aa72a3969a6fde70769b904af007afc316f20b85017cb2b136dc2d8dcad5117bbc132857db1b0c78f3c7010870bb4c7a70ad32582f8d8f571eeb5c4eee
7
+ data.tar.gz: 41379355faf60d1a6b90c982a8bfc7cd77c5e175110fb08ab7f5b7614f49a19b7f49c5fee4693ddb6ec092f8f2fcc0cef76d59740dcc6238ee9f588b80614f6e
@@ -4,28 +4,45 @@ module Recommendable
4
4
  class << self
5
5
  %w[liked disliked hidden bookmarked recommended].each do |action|
6
6
  define_method "#{action}_set_for" do |klass, id|
7
- [Recommendable.config.redis_namespace, Recommendable.config.user_class.to_s.tableize, id, "#{action}_#{klass.to_s.tableize}"].compact.join(':')
7
+ [redis_namespace, user_namespace, id, "#{action}_#{ratable_namespace(klass)}"].compact.join(':')
8
8
  end
9
9
  end
10
10
 
11
11
  def similarity_set_for(id)
12
- [Recommendable.config.redis_namespace, Recommendable.config.user_class.to_s.tableize, id, 'similarities'].compact.join(':')
12
+ [redis_namespace, user_namespace, id, 'similarities'].compact.join(':')
13
13
  end
14
14
 
15
15
  def liked_by_set_for(klass, id)
16
- [Recommendable.config.redis_namespace, klass.to_s.tableize, id, 'liked_by'].compact.join(':')
16
+ [redis_namespace, ratable_namespace(klass), id, 'liked_by'].compact.join(':')
17
17
  end
18
18
 
19
19
  def disliked_by_set_for(klass, id)
20
- [Recommendable.config.redis_namespace, klass.to_s.tableize, id, 'disliked_by'].compact.join(':')
20
+ [redis_namespace, ratable_namespace(klass), id, 'disliked_by'].compact.join(':')
21
21
  end
22
22
 
23
23
  def score_set_for(klass)
24
- [Recommendable.config.redis_namespace, klass.to_s.tableize, 'scores'].join(':')
24
+ [redis_namespace, ratable_namespace(klass), 'scores'].join(':')
25
25
  end
26
26
 
27
27
  def temp_set_for(klass, id)
28
- [Recommendable.config.redis_namespace, klass.to_s.tableize, id, 'temp'].compact.join(':')
28
+ [redis_namespace, ratable_namespace(klass), id, 'temp'].compact.join(':')
29
+ end
30
+
31
+ private
32
+
33
+ def redis_namespace
34
+ Recommendable.config.redis_namespace
35
+ end
36
+
37
+ def user_namespace
38
+ Recommendable.config.user_class.to_s.tableize
39
+ end
40
+
41
+ # If the class or a superclass has been configured as ratable with <tt>recommends :class_name</tt>
42
+ # then that ratable class is used to produce the namespace. Fall back on just using the given class.
43
+ def ratable_namespace(klass)
44
+ klass = klass.ratable_class if klass.respond_to?(:ratable_class)
45
+ klass.to_s.tableize
29
46
  end
30
47
  end
31
48
  end
@@ -14,7 +14,7 @@ module Recommendable
14
14
  class_eval do
15
15
  include Likable
16
16
  include Dislikable
17
-
17
+
18
18
  case
19
19
  when defined?(Sequel::Model) && ancestors.include?(Sequel::Model)
20
20
  def before_destroy() super and remove_from_recommendable! end
@@ -45,13 +45,26 @@ module Recommendable
45
45
  #
46
46
  # @param [Fixnum] count the number of items to fetch (defaults to 1)
47
47
  # @return [Array] the top items belonging to this class, sorted by score
48
- def self.top(count = 1)
48
+ def self.top(options = {})
49
+ if options.is_a?(Integer)
50
+ options = { :count => options}
51
+ warn "[DEPRECATION] Recommenable::Ratable.top now takes an options hash. Please call `.top(count: #{options[:count]})` instead of just `.top(#{options[:count]})`"
52
+ end
53
+ options.reverse_merge!(:count => 1, :offset => 0)
49
54
  score_set = Recommendable::Helpers::RedisKeyMapper.score_set_for(self)
50
- ids = Recommendable.redis.zrevrange(score_set, 0, count - 1)
55
+ ids = Recommendable.redis.zrevrange(score_set, options[:offset], options[:offset] + options[:count] - 1)
51
56
 
52
57
  Recommendable.query(self, ids).sort_by { |item| ids.index(item.id.to_s) }
53
58
  end
54
59
 
60
+ # Returns the class that has been explicitly been made ratable, whether it is this
61
+ # class or a superclass. This allows a ratable class and all of its subclasses to be
62
+ # considered the same type of ratable and give recommendations from the base class
63
+ # or any of the subclasses.
64
+ def self.ratable_class
65
+ ancestors.find { |klass| Recommendable.config.ratable_classes.include?(klass) }
66
+ end
67
+
55
68
  private
56
69
 
57
70
  # Completely removes this item from redis. Called from a before_destroy hook.
@@ -1,8 +1,13 @@
1
1
  module Recommendable
2
- MAJOR = 2
3
- MINOR = 1
4
- PATCH = 2
5
- PRE = nil
2
+ class Version
3
+ MAJOR = 2
4
+ MINOR = 1
5
+ PATCH = 3
6
6
 
7
- VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join '.'
7
+ def self.to_s
8
+ [MAJOR, MINOR, PATCH].join('.')
9
+ end
10
+ end
11
+
12
+ VERSION = Version.to_s.freeze
8
13
  end
@@ -0,0 +1,3 @@
1
+ # STI class that is not ratable
2
+ class Boat < Vehicle
3
+ end
@@ -1,3 +1,3 @@
1
1
  class Book < ActiveRecord::Base
2
- attr_accessible :author, :title
2
+ attr_accessible :author, :title if ::ActiveRecord::VERSION::MAJOR < 4
3
3
  end
@@ -0,0 +1,4 @@
1
+ # STI ratable class whose base class is not ratable
2
+ class Car < Vehicle
3
+ end
4
+
@@ -0,0 +1,3 @@
1
+ # STI subclass of a ratable class
2
+ class Documentary < Movie
3
+ end
@@ -1,3 +1,3 @@
1
1
  class Movie < ActiveRecord::Base
2
- attr_accessible :title, :year
2
+ attr_accessible :title, :year if ::ActiveRecord::VERSION::MAJOR < 4
3
3
  end
@@ -1,3 +1,3 @@
1
1
  class Rock < ActiveRecord::Base
2
- attr_accessible :name
2
+ attr_accessible :name if ::ActiveRecord::VERSION::MAJOR < 4
3
3
  end
@@ -1,4 +1,4 @@
1
1
  class User < ActiveRecord::Base
2
- attr_accessible :email
3
- recommends :movies, :books
2
+ attr_accessible :email if ::ActiveRecord::VERSION::MAJOR < 4
3
+ recommends :movies, :books, :cars
4
4
  end
@@ -0,0 +1,3 @@
1
+ # STI base class that is not ratable
2
+ class Vehicle < ActiveRecord::Base
3
+ end
@@ -51,7 +51,7 @@ module Dummy
51
51
  # This will create an empty whitelist of attributes available for mass-assignment for all models
52
52
  # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
53
53
  # parameters by using an attr_accessible or attr_protected declaration.
54
- config.active_record.whitelist_attributes = true
54
+ config.active_record.whitelist_attributes = true if ::ActiveRecord::VERSION::MAJOR < 4
55
55
 
56
56
  # Enable the asset pipeline
57
57
  config.assets.enabled = true
@@ -5,9 +5,7 @@ Dummy::Application.configure do
5
5
  # every request. This slows down response time but is perfect for development
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
-
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
8
+ config.eager_load = false
11
9
 
12
10
  # Show full error reports and disable caching
13
11
  config.consider_all_requests_local = true
@@ -22,8 +20,10 @@ Dummy::Application.configure do
22
20
  # Only use best-standards-support built into browsers
23
21
  config.action_dispatch.best_standards_support = :builtin
24
22
 
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
23
+ if (::ActiveRecord::VERSION::MAJOR == 3) && (::ActiveRecord::VERSION::MINOR == 2)
24
+ # Raise exception on mass assignment protection for Active Record models
25
+ config.active_record.mass_assignment_sanitizer = :strict
26
+ end
27
27
 
28
28
  # Log the query plan for queries taking more than this (works
29
29
  # with SQLite, MySQL, and PostgreSQL)
@@ -6,14 +6,12 @@ Dummy::Application.configure do
6
6
  # your test database is "scratch space" for the test suite and is wiped
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
+ config.eager_load = false
9
10
 
10
11
  # Configure static asset server for tests with Cache-Control for performance
11
12
  config.serve_static_assets = true
12
13
  config.static_cache_control = "public, max-age=3600"
13
14
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
16
-
17
15
  # Show full error reports and disable caching
18
16
  config.consider_all_requests_local = true
19
17
  config.action_controller.perform_caching = false
@@ -29,8 +27,10 @@ Dummy::Application.configure do
29
27
  # ActionMailer::Base.deliveries array.
30
28
  config.action_mailer.delivery_method = :test
31
29
 
32
- # Raise exception on mass assignment protection for Active Record models
33
- config.active_record.mass_assignment_sanitizer = :strict
30
+ if (::ActiveRecord::VERSION::MAJOR == 3) && (::ActiveRecord::VERSION::MINOR == 2)
31
+ # Raise exception on mass assignment protection for Active Record models
32
+ config.active_record.mass_assignment_sanitizer = :strict
33
+ end
34
34
 
35
35
  # Print deprecation notices to the stderr
36
36
  config.active_support.deprecation = :stderr
@@ -0,0 +1,10 @@
1
+ class CreateVehicles < ActiveRecord::Migration
2
+ def change
3
+ create_table :vehicles do |t|
4
+ t.string :color
5
+ t.string :type
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ class AddTypeToMovie < ActiveRecord::Migration
2
+ def change
3
+ add_column :movies, :type, :string
4
+ end
5
+ end
@@ -9,34 +9,42 @@
9
9
  # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
10
  # you'll amass, the slower it'll run and the greater likelihood for issues).
11
11
  #
12
- # It's strongly recommended to check this file into your version control system.
12
+ # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(:version => 20121007213144) do
14
+ ActiveRecord::Schema.define(version: 20131226165647) do
15
15
 
16
- create_table "books", :force => true do |t|
16
+ create_table "books", force: true do |t|
17
17
  t.string "title"
18
18
  t.string "author"
19
- t.datetime "created_at", :null => false
20
- t.datetime "updated_at", :null => false
19
+ t.datetime "created_at", null: false
20
+ t.datetime "updated_at", null: false
21
21
  end
22
22
 
23
- create_table "movies", :force => true do |t|
23
+ create_table "movies", force: true do |t|
24
24
  t.string "title"
25
25
  t.integer "year"
26
- t.datetime "created_at", :null => false
27
- t.datetime "updated_at", :null => false
26
+ t.datetime "created_at", null: false
27
+ t.datetime "updated_at", null: false
28
+ t.string "type"
28
29
  end
29
30
 
30
- create_table "rocks", :force => true do |t|
31
+ create_table "rocks", force: true do |t|
31
32
  t.string "name"
32
- t.datetime "created_at", :null => false
33
- t.datetime "updated_at", :null => false
33
+ t.datetime "created_at", null: false
34
+ t.datetime "updated_at", null: false
34
35
  end
35
36
 
36
- create_table "users", :force => true do |t|
37
+ create_table "users", force: true do |t|
37
38
  t.string "email"
38
- t.datetime "created_at", :null => false
39
- t.datetime "updated_at", :null => false
39
+ t.datetime "created_at", null: false
40
+ t.datetime "updated_at", null: false
41
+ end
42
+
43
+ create_table "vehicles", force: true do |t|
44
+ t.string "color"
45
+ t.string "type"
46
+ t.datetime "created_at"
47
+ t.datetime "updated_at"
40
48
  end
41
49
 
42
50
  end
Binary file
@@ -39974,3 +39974,3167 @@ Connecting to database specified by database.yml
39974
39974
  SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 105]]
39975
39975
   (0.0ms) RELEASE SAVEPOINT active_record_1
39976
39976
  User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (109, 108, 106, 110)
39977
+ Connecting to database specified by database.yml
39978
+  (0.3ms) begin transaction
39979
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
39980
+  (0.0ms) SAVEPOINT active_record_1
39981
+ SQL (2.7ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user1@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
39982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39983
+  (0.1ms) SAVEPOINT active_record_1
39984
+ SQL (0.6ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
39985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39986
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
39987
+  (0.0ms) SAVEPOINT active_record_1
39988
+ SQL (0.3ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["name", "Boring Specimen No. 1"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
39989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39990
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
39991
+  (0.0ms) SAVEPOINT active_record_1
39992
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user2@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
39993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39994
+  (0.0ms) SAVEPOINT active_record_1
39995
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
39996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39997
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
39998
+  (0.0ms) SAVEPOINT active_record_1
39999
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 1"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40001
+  (0.0ms) SAVEPOINT active_record_1
40002
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40004
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40005
+  (0.0ms) SAVEPOINT active_record_1
40006
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user3@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40008
+  (0.0ms) SAVEPOINT active_record_1
40009
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40011
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40012
+  (0.0ms) SAVEPOINT active_record_1
40013
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user4@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40015
+  (0.0ms) SAVEPOINT active_record_1
40016
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40018
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40019
+  (0.0ms) SAVEPOINT active_record_1
40020
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 2"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40022
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40023
+  (0.0ms) SAVEPOINT active_record_1
40024
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 3"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40026
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)
40027
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
40028
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)
40029
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
40030
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)
40031
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
40032
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)
40033
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
40034
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40035
+  (0.0ms) SAVEPOINT active_record_1
40036
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user5@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40038
+  (0.0ms) SAVEPOINT active_record_1
40039
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40041
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40042
+  (0.0ms) SAVEPOINT active_record_1
40043
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user6@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40045
+  (0.0ms) SAVEPOINT active_record_1
40046
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40048
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40049
+  (0.0ms) SAVEPOINT active_record_1
40050
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user7@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40052
+  (0.0ms) SAVEPOINT active_record_1
40053
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40055
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40056
+  (0.0ms) SAVEPOINT active_record_1
40057
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 4"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40059
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (7)
40060
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (4)
40061
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (7)
40062
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (4)
40063
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40064
+  (0.0ms) SAVEPOINT active_record_1
40065
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user8@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40067
+  (0.0ms) SAVEPOINT active_record_1
40068
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40070
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40071
+  (0.0ms) SAVEPOINT active_record_1
40072
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user9@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40074
+  (0.0ms) SAVEPOINT active_record_1
40075
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40077
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40078
+  (0.0ms) SAVEPOINT active_record_1
40079
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user10@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40081
+  (0.0ms) SAVEPOINT active_record_1
40082
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40084
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40085
+  (0.0ms) SAVEPOINT active_record_1
40086
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user11@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40088
+  (0.0ms) SAVEPOINT active_record_1
40089
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40091
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
40092
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40093
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12)
40094
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40095
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40096
+  (0.0ms) SAVEPOINT active_record_1
40097
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user12@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40099
+  (0.0ms) SAVEPOINT active_record_1
40100
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40102
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40103
+  (0.0ms) SAVEPOINT active_record_1
40104
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user13@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40106
+  (0.0ms) SAVEPOINT active_record_1
40107
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40109
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40110
+  (0.0ms) SAVEPOINT active_record_1
40111
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 5"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40113
+  (0.0ms) SAVEPOINT active_record_1
40114
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40116
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40117
+  (0.0ms) SAVEPOINT active_record_1
40118
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user14@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40120
+  (0.0ms) SAVEPOINT active_record_1
40121
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40123
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40124
+  (0.0ms) SAVEPOINT active_record_1
40125
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 6"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40127
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (16)
40128
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (6)
40129
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40130
+  (0.0ms) SAVEPOINT active_record_1
40131
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user15@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40133
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40134
+  (0.0ms) SAVEPOINT active_record_1
40135
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user16@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40137
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40138
+  (0.0ms) SAVEPOINT active_record_1
40139
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user17@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40141
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40142
+  (0.0ms) SAVEPOINT active_record_1
40143
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user18@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40145
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40146
+  (0.0ms) SAVEPOINT active_record_1
40147
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user19@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40149
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40150
+  (0.0ms) SAVEPOINT active_record_1
40151
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["email", "user20@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40153
+  (0.0ms) SAVEPOINT active_record_1
40154
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40156
+  (0.0ms) SAVEPOINT active_record_1
40157
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40159
+  (0.0ms) SAVEPOINT active_record_1
40160
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40162
+  (0.0ms) SAVEPOINT active_record_1
40163
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40165
+  (0.0ms) SAVEPOINT active_record_1
40166
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40168
+  (0.0ms) SAVEPOINT active_record_1
40169
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40171
+  (0.0ms) SAVEPOINT active_record_1
40172
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40174
+  (0.0ms) SAVEPOINT active_record_1
40175
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40177
+  (0.0ms) SAVEPOINT active_record_1
40178
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40180
+  (0.0ms) SAVEPOINT active_record_1
40181
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["year", 200]]
40182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40183
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40184
+  (0.0ms) SAVEPOINT active_record_1
40185
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 7"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40187
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40188
+  (0.0ms) SAVEPOINT active_record_1
40189
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 8"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40191
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40192
+  (0.0ms) SAVEPOINT active_record_1
40193
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 9"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40195
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40196
+  (0.0ms) SAVEPOINT active_record_1
40197
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 10"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40199
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40200
+  (0.0ms) SAVEPOINT active_record_1
40201
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 11"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40203
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40204
+  (0.0ms) SAVEPOINT active_record_1
40205
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 12"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40207
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40208
+  (0.0ms) SAVEPOINT active_record_1
40209
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 13"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40211
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40212
+  (0.0ms) SAVEPOINT active_record_1
40213
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 14"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40215
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40216
+  (0.0ms) SAVEPOINT active_record_1
40217
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 15"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40219
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40220
+  (0.0ms) SAVEPOINT active_record_1
40221
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00], ["title", "Harry Potter Vol. 16"], ["updated_at", Wed, 31 Jul 2013 00:29:40 UTC +00:00]]
40222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40223
+  (0.1ms) SELECT COUNT(*) FROM "users"
40224
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (17, 18, 19)
40225
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (20, 21, 22)
40226
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (10, 11, 12)
40227
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (7, 8, 9)
40228
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
40229
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
40230
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
40231
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
40232
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
40233
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
40234
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
40235
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
40236
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
40237
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
40238
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
40239
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
40240
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40241
+  (0.0ms) SAVEPOINT active_record_1
40242
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user21@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40244
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40245
+  (0.0ms) SAVEPOINT active_record_1
40246
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user22@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40248
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40249
+  (0.0ms) SAVEPOINT active_record_1
40250
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user23@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40252
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40253
+  (0.0ms) SAVEPOINT active_record_1
40254
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user24@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40256
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40257
+  (0.0ms) SAVEPOINT active_record_1
40258
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user25@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40260
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40261
+  (0.0ms) SAVEPOINT active_record_1
40262
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user26@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40264
+  (0.0ms) SAVEPOINT active_record_1
40265
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40267
+  (0.0ms) SAVEPOINT active_record_1
40268
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40270
+  (0.0ms) SAVEPOINT active_record_1
40271
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40273
+  (0.0ms) SAVEPOINT active_record_1
40274
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40276
+  (0.0ms) SAVEPOINT active_record_1
40277
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40279
+  (0.0ms) SAVEPOINT active_record_1
40280
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40282
+  (0.0ms) SAVEPOINT active_record_1
40283
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40285
+  (0.0ms) SAVEPOINT active_record_1
40286
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40288
+  (0.0ms) SAVEPOINT active_record_1
40289
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40291
+  (0.0ms) SAVEPOINT active_record_1
40292
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40294
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40295
+  (0.0ms) SAVEPOINT active_record_1
40296
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 17"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40298
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40299
+  (0.0ms) SAVEPOINT active_record_1
40300
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 18"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40302
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40303
+  (0.0ms) SAVEPOINT active_record_1
40304
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 19"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40306
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40307
+  (0.0ms) SAVEPOINT active_record_1
40308
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 20"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40310
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40311
+  (0.0ms) SAVEPOINT active_record_1
40312
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 21"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40314
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40315
+  (0.0ms) SAVEPOINT active_record_1
40316
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 22"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40318
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40319
+  (0.0ms) SAVEPOINT active_record_1
40320
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 23"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40322
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40323
+  (0.0ms) SAVEPOINT active_record_1
40324
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 24"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40326
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40327
+  (0.0ms) SAVEPOINT active_record_1
40328
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 25"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40330
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40331
+  (0.1ms) SAVEPOINT active_record_1
40332
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 26"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40334
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40335
+  (0.0ms) SAVEPOINT active_record_1
40336
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user27@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40338
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40339
+  (0.0ms) SAVEPOINT active_record_1
40340
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user28@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40342
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40343
+  (0.0ms) SAVEPOINT active_record_1
40344
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user29@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40346
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40347
+  (0.0ms) SAVEPOINT active_record_1
40348
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user30@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40350
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40351
+  (0.0ms) SAVEPOINT active_record_1
40352
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user31@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40354
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40355
+  (0.0ms) SAVEPOINT active_record_1
40356
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user32@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40358
+  (0.0ms) SAVEPOINT active_record_1
40359
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40361
+  (0.0ms) SAVEPOINT active_record_1
40362
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40364
+  (0.0ms) SAVEPOINT active_record_1
40365
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40367
+  (0.0ms) SAVEPOINT active_record_1
40368
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40370
+  (0.0ms) SAVEPOINT active_record_1
40371
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40373
+  (0.0ms) SAVEPOINT active_record_1
40374
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40376
+  (0.0ms) SAVEPOINT active_record_1
40377
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40379
+  (0.0ms) SAVEPOINT active_record_1
40380
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40382
+  (0.0ms) SAVEPOINT active_record_1
40383
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40385
+  (0.0ms) SAVEPOINT active_record_1
40386
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40388
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40389
+  (0.0ms) SAVEPOINT active_record_1
40390
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 27"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40392
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40393
+  (0.0ms) SAVEPOINT active_record_1
40394
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 28"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40396
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40397
+  (0.0ms) SAVEPOINT active_record_1
40398
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 29"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40400
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40401
+  (0.0ms) SAVEPOINT active_record_1
40402
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 30"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40404
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40405
+  (0.0ms) SAVEPOINT active_record_1
40406
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 31"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40408
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40409
+  (0.0ms) SAVEPOINT active_record_1
40410
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 32"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40412
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40413
+  (0.0ms) SAVEPOINT active_record_1
40414
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 33"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40416
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40417
+  (0.0ms) SAVEPOINT active_record_1
40418
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 34"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40420
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40421
+  (0.0ms) SAVEPOINT active_record_1
40422
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 35"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40424
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40425
+  (0.0ms) SAVEPOINT active_record_1
40426
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 36"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40428
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40429
+  (0.0ms) SAVEPOINT active_record_1
40430
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user33@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40432
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40433
+  (0.0ms) SAVEPOINT active_record_1
40434
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user34@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40436
+  (0.0ms) SAVEPOINT active_record_1
40437
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40439
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
40440
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40441
+  (0.0ms) SAVEPOINT active_record_1
40442
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user35@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40444
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40445
+  (0.0ms) SAVEPOINT active_record_1
40446
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user36@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40448
+  (0.0ms) SAVEPOINT active_record_1
40449
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40451
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
40452
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (35)
40453
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (35)
40454
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (35, 36)
40455
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40456
+  (0.0ms) SAVEPOINT active_record_1
40457
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user37@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40459
+  (0.0ms) SAVEPOINT active_record_1
40460
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40462
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
40463
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40464
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49)
40465
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40466
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40467
+  (0.1ms) SAVEPOINT active_record_1
40468
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user38@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40470
+  (0.0ms) SAVEPOINT active_record_1
40471
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40473
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40474
+  (0.0ms) SAVEPOINT active_record_1
40475
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user39@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40477
+  (0.0ms) SAVEPOINT active_record_1
40478
+ SQL (0.4ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40480
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40481
+  (0.0ms) SAVEPOINT active_record_1
40482
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 37"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40484
+  (0.0ms) SAVEPOINT active_record_1
40485
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40487
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40488
+  (0.0ms) SAVEPOINT active_record_1
40489
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user40@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40491
+  (0.0ms) SAVEPOINT active_record_1
40492
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40494
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40495
+  (0.1ms) SAVEPOINT active_record_1
40496
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user41@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40498
+  (0.0ms) SAVEPOINT active_record_1
40499
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40501
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40502
+  (0.0ms) SAVEPOINT active_record_1
40503
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 38"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40505
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40506
+  (0.0ms) SAVEPOINT active_record_1
40507
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 39"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40509
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
40510
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
40511
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
40512
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
40513
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
40514
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
40515
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
40516
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
40517
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40518
+  (0.0ms) SAVEPOINT active_record_1
40519
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user42@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40521
+  (0.0ms) SAVEPOINT active_record_1
40522
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40524
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40525
+  (0.0ms) SAVEPOINT active_record_1
40526
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user43@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40528
+  (0.1ms) SAVEPOINT active_record_1
40529
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40531
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40532
+  (0.0ms) SAVEPOINT active_record_1
40533
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user44@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40535
+  (0.0ms) SAVEPOINT active_record_1
40536
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40538
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40539
+  (0.0ms) SAVEPOINT active_record_1
40540
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 40"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40542
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (56)
40543
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40)
40544
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (56)
40545
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (40)
40546
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40547
+  (0.0ms) SAVEPOINT active_record_1
40548
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user45@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40550
+  (0.0ms) SAVEPOINT active_record_1
40551
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40553
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40554
+  (0.0ms) SAVEPOINT active_record_1
40555
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 41"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40557
+  (0.0ms) SAVEPOINT active_record_1
40558
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40559
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40560
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40561
+  (0.0ms) SAVEPOINT active_record_1
40562
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user46@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40564
+  (0.0ms) SAVEPOINT active_record_1
40565
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40567
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40568
+  (0.0ms) SAVEPOINT active_record_1
40569
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user47@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40571
+  (0.0ms) SAVEPOINT active_record_1
40572
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40574
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
40575
+  (0.0ms) SAVEPOINT active_record_1
40576
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["name", "Boring Specimen No. 2"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40578
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40579
+  (0.0ms) SAVEPOINT active_record_1
40580
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user48@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40582
+  (0.0ms) SAVEPOINT active_record_1
40583
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40585
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40586
+  (0.0ms) SAVEPOINT active_record_1
40587
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user49@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40589
+  (0.0ms) SAVEPOINT active_record_1
40590
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40592
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40593
+  (0.0ms) SAVEPOINT active_record_1
40594
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user50@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40596
+  (0.0ms) SAVEPOINT active_record_1
40597
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40599
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40600
+  (0.0ms) SAVEPOINT active_record_1
40601
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 42"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40603
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (64)
40604
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (42)
40605
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40606
+  (0.0ms) SAVEPOINT active_record_1
40607
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user51@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40608
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40609
+  (0.0ms) SAVEPOINT active_record_1
40610
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40612
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40613
+  (0.0ms) SAVEPOINT active_record_1
40614
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user52@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40616
+  (0.0ms) SAVEPOINT active_record_1
40617
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40619
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40620
+  (0.0ms) SAVEPOINT active_record_1
40621
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 43"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40623
+  (0.0ms) SAVEPOINT active_record_1
40624
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40626
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40627
+  (0.0ms) SAVEPOINT active_record_1
40628
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user53@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40630
+  (0.0ms) SAVEPOINT active_record_1
40631
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40633
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40634
+  (0.0ms) SAVEPOINT active_record_1
40635
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user54@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40637
+  (0.0ms) SAVEPOINT active_record_1
40638
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40640
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40641
+  (0.0ms) SAVEPOINT active_record_1
40642
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 44"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40644
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)
40645
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (44)
40646
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)
40647
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (44)
40648
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40649
+  (0.0ms) SAVEPOINT active_record_1
40650
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user55@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40652
+  (0.0ms) SAVEPOINT active_record_1
40653
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40655
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40656
+  (0.0ms) SAVEPOINT active_record_1
40657
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user56@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40658
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40659
+  (0.0ms) SAVEPOINT active_record_1
40660
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40662
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40663
+  (0.0ms) SAVEPOINT active_record_1
40664
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 45"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40666
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40667
+  (0.0ms) SAVEPOINT active_record_1
40668
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 46"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40670
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)
40671
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
40672
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)
40673
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
40674
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)
40675
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
40676
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)
40677
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
40678
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40679
+  (0.0ms) SAVEPOINT active_record_1
40680
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user57@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40682
+  (0.0ms) SAVEPOINT active_record_1
40683
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40685
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40686
+  (0.0ms) SAVEPOINT active_record_1
40687
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user58@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40689
+  (0.1ms) SAVEPOINT active_record_1
40690
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40692
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40693
+  (0.0ms) SAVEPOINT active_record_1
40694
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user59@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40696
+  (0.0ms) SAVEPOINT active_record_1
40697
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40699
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40700
+  (0.0ms) SAVEPOINT active_record_1
40701
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user60@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40703
+  (0.0ms) SAVEPOINT active_record_1
40704
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40706
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40707
+  (0.0ms) SAVEPOINT active_record_1
40708
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 47"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40710
+  (0.0ms) SAVEPOINT active_record_1
40711
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40713
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40714
+  (0.0ms) SAVEPOINT active_record_1
40715
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user61@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40717
+  (0.0ms) SAVEPOINT active_record_1
40718
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40720
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40721
+  (0.0ms) SAVEPOINT active_record_1
40722
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user62@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40724
+  (0.0ms) SAVEPOINT active_record_1
40725
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40727
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40728
+  (0.0ms) SAVEPOINT active_record_1
40729
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 48"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40731
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (78)
40732
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (48)
40733
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40734
+  (0.0ms) SAVEPOINT active_record_1
40735
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user63@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40737
+  (0.0ms) SAVEPOINT active_record_1
40738
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40740
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
40741
+  (0.0ms) SAVEPOINT active_record_1
40742
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["name", "Boring Specimen No. 3"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40744
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40745
+  (0.0ms) SAVEPOINT active_record_1
40746
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user64@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40748
+  (0.0ms) SAVEPOINT active_record_1
40749
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40751
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
40752
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40753
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (80)
40754
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40755
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40756
+  (0.0ms) SAVEPOINT active_record_1
40757
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user65@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40759
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40760
+  (0.0ms) SAVEPOINT active_record_1
40761
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user66@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40763
+  (0.0ms) SAVEPOINT active_record_1
40764
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40766
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
40767
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40768
+  (0.0ms) SAVEPOINT active_record_1
40769
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user67@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40771
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40772
+  (0.0ms) SAVEPOINT active_record_1
40773
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user68@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40775
+  (0.0ms) SAVEPOINT active_record_1
40776
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40778
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
40779
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (67)
40780
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (67)
40781
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (67, 68)
40782
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40783
+  (0.0ms) SAVEPOINT active_record_1
40784
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user69@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40786
+  (0.1ms) SAVEPOINT active_record_1
40787
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40789
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40790
+  (0.0ms) SAVEPOINT active_record_1
40791
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user70@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40793
+  (0.0ms) SAVEPOINT active_record_1
40794
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40796
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40797
+  (0.0ms) SAVEPOINT active_record_1
40798
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 49"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40800
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (83)
40801
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
40802
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (83)
40803
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
40804
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40805
+  (0.1ms) SAVEPOINT active_record_1
40806
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user71@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40808
+  (0.0ms) SAVEPOINT active_record_1
40809
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40811
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
40812
+  (0.0ms) SAVEPOINT active_record_1
40813
+ SQL (0.2ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["name", "Boring Specimen No. 4"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40815
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40816
+  (0.0ms) SAVEPOINT active_record_1
40817
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user72@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40819
+  (0.0ms) SAVEPOINT active_record_1
40820
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40822
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40823
+  (0.0ms) SAVEPOINT active_record_1
40824
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user73@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40826
+  (0.0ms) SAVEPOINT active_record_1
40827
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40829
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40830
+  (0.0ms) SAVEPOINT active_record_1
40831
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user74@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40833
+  (0.0ms) SAVEPOINT active_record_1
40834
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40836
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40837
+  (0.0ms) SAVEPOINT active_record_1
40838
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user75@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40840
+  (0.0ms) SAVEPOINT active_record_1
40841
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40843
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40844
+  (0.0ms) SAVEPOINT active_record_1
40845
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 50"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40847
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40848
+  (0.0ms) SAVEPOINT active_record_1
40849
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 51"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40851
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
40852
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (50)
40853
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
40854
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (50)
40855
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
40856
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (50)
40857
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
40858
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (50)
40859
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40860
+  (0.0ms) SAVEPOINT active_record_1
40861
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["email", "user76@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40863
+  (0.1ms) SAVEPOINT active_record_1
40864
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40866
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40867
+  (0.0ms) SAVEPOINT active_record_1
40868
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "Harry Potter Vol. 52"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00]]
40869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40870
+  (0.0ms) SAVEPOINT active_record_1
40871
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:41 UTC +00:00], ["year", 200]]
40872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40873
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40874
+  (0.1ms) SAVEPOINT active_record_1
40875
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user77@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40877
+  (0.0ms) SAVEPOINT active_record_1
40878
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40880
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40881
+  (0.0ms) SAVEPOINT active_record_1
40882
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 53"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40884
+  (0.0ms) SAVEPOINT active_record_1
40885
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
40887
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40888
+  (0.0ms) SAVEPOINT active_record_1
40889
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user78@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40891
+  (0.0ms) SAVEPOINT active_record_1
40892
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40894
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40895
+  (0.0ms) SAVEPOINT active_record_1
40896
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user79@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40898
+  (0.0ms) SAVEPOINT active_record_1
40899
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40901
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40902
+  (0.0ms) SAVEPOINT active_record_1
40903
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user80@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40905
+  (0.0ms) SAVEPOINT active_record_1
40906
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40908
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
40909
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40910
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (96)
40911
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
40912
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40913
+  (0.0ms) SAVEPOINT active_record_1
40914
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user81@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40916
+  (0.0ms) SAVEPOINT active_record_1
40917
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40919
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40920
+  (0.0ms) SAVEPOINT active_record_1
40921
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user82@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40923
+  (0.0ms) SAVEPOINT active_record_1
40924
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40926
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40927
+  (0.0ms) SAVEPOINT active_record_1
40928
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 54"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40930
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (98)
40931
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (54)
40932
+  (0.0ms) SAVEPOINT active_record_1
40933
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40935
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40936
+  (0.0ms) SAVEPOINT active_record_1
40937
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 55"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40939
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
40940
+  (0.0ms) SAVEPOINT active_record_1
40941
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["name", "Boring Specimen No. 5"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40943
+  (0.0ms) SAVEPOINT active_record_1
40944
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40946
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
40947
+  (0.0ms) SAVEPOINT active_record_1
40948
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 56"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40950
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
40951
+  (0.0ms) SAVEPOINT active_record_1
40952
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["name", "Boring Specimen No. 6"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40954
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40955
+  (0.0ms) SAVEPOINT active_record_1
40956
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user83@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40958
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40959
+  (0.0ms) SAVEPOINT active_record_1
40960
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user84@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40962
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
40963
+  (0.0ms) SAVEPOINT active_record_1
40964
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user85@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40966
+  (0.1ms) SAVEPOINT active_record_1
40967
+ SQL (0.2ms) DELETE FROM "movies" WHERE "movies"."id" = ? [["id", 100]]
40968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40969
+  (0.0ms) SAVEPOINT active_record_1
40970
+ SQL (0.1ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 56]]
40971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40972
+  (0.1ms) SELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (NULL)
40973
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (NULL)
40974
+  (0.0ms) SAVEPOINT active_record_1
40975
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
40976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40977
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
40978
+  (0.0ms) SAVEPOINT active_record_1
40979
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 56"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40981
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
40982
+  (0.0ms) SAVEPOINT active_record_1
40983
+ SQL (0.2ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["name", "Boring Specimen No. 7"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40985
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40986
+  (0.0ms) SAVEPOINT active_record_1
40987
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 58"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40989
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
40990
+  (0.0ms) SAVEPOINT active_record_1
40991
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 59"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40993
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
40994
+  (0.0ms) SAVEPOINT active_record_1
40995
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user86@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
40996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40997
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
40998
+  (0.0ms) SAVEPOINT active_record_1
40999
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user87@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41001
+ Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (58, 59, 57)
41002
+  (0.0ms) SAVEPOINT active_record_1
41003
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41005
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
41006
+  (0.0ms) SAVEPOINT active_record_1
41007
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 60"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41009
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
41010
+  (0.0ms) SAVEPOINT active_record_1
41011
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["name", "Boring Specimen No. 8"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41013
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41014
+  (0.0ms) SAVEPOINT active_record_1
41015
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user88@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41017
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41018
+  (0.0ms) SAVEPOINT active_record_1
41019
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user89@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41021
+  (0.0ms) SAVEPOINT active_record_1
41022
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41024
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41025
+  (0.0ms) SAVEPOINT active_record_1
41026
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user90@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41028
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41029
+  (0.0ms) SAVEPOINT active_record_1
41030
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user91@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41032
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41033
+  (0.0ms) SAVEPOINT active_record_1
41034
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user92@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41036
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41037
+  (0.0ms) SAVEPOINT active_record_1
41038
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user93@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41040
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41041
+  (0.0ms) SAVEPOINT active_record_1
41042
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user94@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41044
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41045
+  (0.0ms) SAVEPOINT active_record_1
41046
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user95@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41048
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41049
+  (0.0ms) SAVEPOINT active_record_1
41050
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user96@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41052
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41053
+  (0.0ms) SAVEPOINT active_record_1
41054
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user97@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41056
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41057
+  (0.0ms) SAVEPOINT active_record_1
41058
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user98@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
41060
+  (0.0ms) SAVEPOINT active_record_1
41061
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41063
+  (0.0ms) SAVEPOINT active_record_1
41064
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41066
+  (0.0ms) SAVEPOINT active_record_1
41067
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41069
+  (0.0ms) SAVEPOINT active_record_1
41070
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41072
+  (0.0ms) SAVEPOINT active_record_1
41073
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41075
+  (0.0ms) SAVEPOINT active_record_1
41076
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41078
+  (0.0ms) SAVEPOINT active_record_1
41079
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41081
+  (0.0ms) SAVEPOINT active_record_1
41082
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41084
+  (0.0ms) SAVEPOINT active_record_1
41085
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41087
+  (0.0ms) SAVEPOINT active_record_1
41088
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41090
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41091
+  (0.0ms) SAVEPOINT active_record_1
41092
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 61"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41094
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41095
+  (0.0ms) SAVEPOINT active_record_1
41096
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 62"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41098
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41099
+  (0.0ms) SAVEPOINT active_record_1
41100
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 63"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41102
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41103
+  (0.0ms) SAVEPOINT active_record_1
41104
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 64"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41106
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41107
+  (0.0ms) SAVEPOINT active_record_1
41108
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 65"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41110
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41111
+  (0.0ms) SAVEPOINT active_record_1
41112
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 66"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41114
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41115
+  (0.0ms) SAVEPOINT active_record_1
41116
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 67"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41118
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41119
+  (0.0ms) SAVEPOINT active_record_1
41120
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 68"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41122
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41123
+  (0.0ms) SAVEPOINT active_record_1
41124
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 69"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41126
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41127
+  (0.0ms) SAVEPOINT active_record_1
41128
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 70"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41130
+  (0.1ms) SELECT COUNT(*) FROM "users" 
41131
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (95, 97, 96, 94, 98)
41132
+  (0.1ms) SELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (111)
41133
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (68, 67)
41134
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (93, 97, 96, 94, 98)
41135
+  (0.0ms) SAVEPOINT active_record_1
41136
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 93]]
41137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41138
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (97, 96, 94, 98)
41139
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41140
+  (0.0ms) SAVEPOINT active_record_1
41141
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user99@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41143
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41144
+  (0.0ms) SAVEPOINT active_record_1
41145
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user100@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41147
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41148
+  (0.0ms) SAVEPOINT active_record_1
41149
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user101@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41151
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41152
+  (0.0ms) SAVEPOINT active_record_1
41153
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user102@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41155
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41156
+  (0.0ms) SAVEPOINT active_record_1
41157
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user103@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41159
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41160
+  (0.0ms) SAVEPOINT active_record_1
41161
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user104@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41163
+  (0.0ms) SAVEPOINT active_record_1
41164
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41166
+  (0.0ms) SAVEPOINT active_record_1
41167
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41169
+  (0.0ms) SAVEPOINT active_record_1
41170
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41172
+  (0.0ms) SAVEPOINT active_record_1
41173
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41175
+  (0.0ms) SAVEPOINT active_record_1
41176
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41178
+  (0.0ms) SAVEPOINT active_record_1
41179
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41181
+  (0.0ms) SAVEPOINT active_record_1
41182
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41184
+  (0.0ms) SAVEPOINT active_record_1
41185
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41187
+  (0.0ms) SAVEPOINT active_record_1
41188
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41190
+  (0.0ms) SAVEPOINT active_record_1
41191
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41193
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41194
+  (0.1ms) SAVEPOINT active_record_1
41195
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 71"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41197
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41198
+  (0.0ms) SAVEPOINT active_record_1
41199
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 72"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41201
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41202
+  (0.1ms) SAVEPOINT active_record_1
41203
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 73"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
41205
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41206
+  (0.0ms) SAVEPOINT active_record_1
41207
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 74"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41209
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41210
+  (0.0ms) SAVEPOINT active_record_1
41211
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 75"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41213
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41214
+  (0.0ms) SAVEPOINT active_record_1
41215
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 76"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41217
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41218
+  (0.0ms) SAVEPOINT active_record_1
41219
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 77"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41221
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
41222
+  (0.0ms) SAVEPOINT active_record_1
41223
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 78"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41225
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41226
+  (0.0ms) SAVEPOINT active_record_1
41227
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 79"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41229
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41230
+  (0.0ms) SAVEPOINT active_record_1
41231
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 80"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41233
+  (0.1ms) SELECT COUNT(*) FROM "users"
41234
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (101, 103, 102, 100, 104)
41235
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41236
+  (0.0ms) SAVEPOINT active_record_1
41237
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user105@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41239
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41240
+  (0.0ms) SAVEPOINT active_record_1
41241
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user106@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41243
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41244
+  (0.0ms) SAVEPOINT active_record_1
41245
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user107@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41247
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41248
+  (0.0ms) SAVEPOINT active_record_1
41249
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user108@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41251
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41252
+  (0.0ms) SAVEPOINT active_record_1
41253
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user109@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41255
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41256
+  (0.0ms) SAVEPOINT active_record_1
41257
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["email", "user110@example.com"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41259
+  (0.0ms) SAVEPOINT active_record_1
41260
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41262
+  (0.0ms) SAVEPOINT active_record_1
41263
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41265
+  (0.1ms) SAVEPOINT active_record_1
41266
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41268
+  (0.0ms) SAVEPOINT active_record_1
41269
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41271
+  (0.0ms) SAVEPOINT active_record_1
41272
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41274
+  (0.0ms) SAVEPOINT active_record_1
41275
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41277
+  (0.0ms) SAVEPOINT active_record_1
41278
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41280
+  (0.0ms) SAVEPOINT active_record_1
41281
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41283
+  (0.1ms) SAVEPOINT active_record_1
41284
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41286
+  (0.0ms) SAVEPOINT active_record_1
41287
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?) [["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "#<Proc:0x007fd059571530@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["year", 200]]
41288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41289
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41290
+  (0.0ms) SAVEPOINT active_record_1
41291
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 81"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41293
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41294
+  (0.0ms) SAVEPOINT active_record_1
41295
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 82"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41297
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41298
+  (0.1ms) SAVEPOINT active_record_1
41299
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 83"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41301
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41302
+  (0.0ms) SAVEPOINT active_record_1
41303
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 84"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41305
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41306
+  (0.0ms) SAVEPOINT active_record_1
41307
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 85"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41309
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41310
+  (0.0ms) SAVEPOINT active_record_1
41311
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 86"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41313
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41314
+  (0.0ms) SAVEPOINT active_record_1
41315
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 87"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41317
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41318
+  (0.0ms) SAVEPOINT active_record_1
41319
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 88"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41321
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41322
+  (0.0ms) SAVEPOINT active_record_1
41323
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 89"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41325
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41326
+  (0.0ms) SAVEPOINT active_record_1
41327
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00], ["title", "Harry Potter Vol. 90"], ["updated_at", Wed, 31 Jul 2013 00:29:42 UTC +00:00]]
41328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41329
+  (0.1ms) SELECT COUNT(*) FROM "users"
41330
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)
41331
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)
41332
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)
41333
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)
41334
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (88, 87, 90, 89)
41335
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (88, 87, 90, 89)
41336
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (88, 87, 90, 89)
41337
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (88, 87, 90, 89)
41338
+ Connecting to database specified by database.yml
41339
+ Connecting to database specified by database.yml
41340
+  (0.3ms) begin transaction
41341
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41342
+  (0.0ms) SAVEPOINT active_record_1
41343
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user1@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41345
+  (0.0ms) SAVEPOINT active_record_1
41346
+ SQL (1.0ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41348
+  (0.0ms) SAVEPOINT active_record_1
41349
+ SQL (0.4ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41350
+  (0.4ms) RELEASE SAVEPOINT active_record_1
41351
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
41352
+  (0.0ms) SAVEPOINT active_record_1
41353
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 1"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41355
+  (0.0ms) SAVEPOINT active_record_1
41356
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41358
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41359
+  (0.0ms) SAVEPOINT active_record_1
41360
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user2@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41362
+  (0.0ms) SAVEPOINT active_record_1
41363
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41365
+  (0.0ms) SAVEPOINT active_record_1
41366
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41368
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41369
+  (0.0ms) SAVEPOINT active_record_1
41370
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user3@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41372
+  (0.0ms) SAVEPOINT active_record_1
41373
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41375
+  (0.0ms) SAVEPOINT active_record_1
41376
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41378
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41379
+  (0.0ms) SAVEPOINT active_record_1
41380
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user4@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41382
+  (0.0ms) SAVEPOINT active_record_1
41383
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41385
+  (0.0ms) SAVEPOINT active_record_1
41386
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41388
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41389
+  (0.0ms) SAVEPOINT active_record_1
41390
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user5@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41392
+  (0.0ms) SAVEPOINT active_record_1
41393
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41395
+  (0.0ms) SAVEPOINT active_record_1
41396
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41398
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41399
+  (0.0ms) SAVEPOINT active_record_1
41400
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user6@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41402
+  (0.0ms) SAVEPOINT active_record_1
41403
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41405
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
41406
+  (0.0ms) SAVEPOINT active_record_1
41407
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 2"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41409
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (10, 11)
41410
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (10, 11)
41411
+ Book Load (0.3ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
41412
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (10, 11)
41413
+ Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
41414
+ Book Load (0.2ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
41415
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41416
+  (0.1ms) SAVEPOINT active_record_1
41417
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user7@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41419
+  (0.0ms) SAVEPOINT active_record_1
41420
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41422
+  (0.0ms) SAVEPOINT active_record_1
41423
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41425
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41426
+  (0.0ms) SAVEPOINT active_record_1
41427
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user8@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41429
+  (0.0ms) SAVEPOINT active_record_1
41430
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41432
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41433
+  (0.0ms) SAVEPOINT active_record_1
41434
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 3"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41436
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41437
+  (0.0ms) SAVEPOINT active_record_1
41438
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 4"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
41440
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)
41441
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
41442
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41443
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)
41444
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
41445
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41446
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)
41447
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
41448
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41449
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)
41450
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
41451
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41452
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)
41453
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
41454
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41455
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41456
+  (0.0ms) SAVEPOINT active_record_1
41457
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user9@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41459
+  (0.0ms) SAVEPOINT active_record_1
41460
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41462
+  (0.0ms) SAVEPOINT active_record_1
41463
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41465
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41466
+  (0.0ms) SAVEPOINT active_record_1
41467
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user10@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41469
+  (0.0ms) SAVEPOINT active_record_1
41470
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41472
+  (0.0ms) SAVEPOINT active_record_1
41473
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41475
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
41476
+  (0.0ms) SAVEPOINT active_record_1
41477
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["name", "Boring Specimen No. 1"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41479
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41480
+  (0.0ms) SAVEPOINT active_record_1
41481
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user11@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41483
+  (0.0ms) SAVEPOINT active_record_1
41484
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41486
+  (0.0ms) SAVEPOINT active_record_1
41487
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41489
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41490
+  (0.0ms) SAVEPOINT active_record_1
41491
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user12@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41493
+  (0.0ms) SAVEPOINT active_record_1
41494
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41496
+  (0.0ms) SAVEPOINT active_record_1
41497
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41499
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41500
+  (0.0ms) SAVEPOINT active_record_1
41501
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user13@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41503
+  (0.0ms) SAVEPOINT active_record_1
41504
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41506
+  (0.0ms) SAVEPOINT active_record_1
41507
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41509
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41510
+  (0.0ms) SAVEPOINT active_record_1
41511
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user14@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41513
+  (0.0ms) SAVEPOINT active_record_1
41514
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41516
+  (0.0ms) SAVEPOINT active_record_1
41517
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41519
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
41520
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41521
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41522
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)
41523
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41524
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41525
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)
41526
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41527
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41528
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 27)
41529
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41530
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41531
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41532
+  (0.0ms) SAVEPOINT active_record_1
41533
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user15@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41535
+  (0.0ms) SAVEPOINT active_record_1
41536
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41538
+  (0.0ms) SAVEPOINT active_record_1
41539
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41541
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
41542
+  (0.0ms) SAVEPOINT active_record_1
41543
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 5"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41544
+  (0.1ms) RELEASE SAVEPOINT active_record_1
41545
+  (0.0ms) SAVEPOINT active_record_1
41546
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41548
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41549
+  (0.0ms) SAVEPOINT active_record_1
41550
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user16@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41552
+  (0.0ms) SAVEPOINT active_record_1
41553
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41555
+  (0.0ms) SAVEPOINT active_record_1
41556
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41558
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41559
+  (0.0ms) SAVEPOINT active_record_1
41560
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 6"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41562
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (31)
41563
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (6)
41564
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41565
+  (0.0ms) SAVEPOINT active_record_1
41566
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user17@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41568
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41569
+  (0.0ms) SAVEPOINT active_record_1
41570
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user18@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41572
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41573
+  (0.0ms) SAVEPOINT active_record_1
41574
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user19@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41576
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41577
+  (0.0ms) SAVEPOINT active_record_1
41578
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user20@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41580
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41581
+  (0.0ms) SAVEPOINT active_record_1
41582
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user21@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41584
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41585
+  (0.0ms) SAVEPOINT active_record_1
41586
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["email", "user22@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41588
+  (0.0ms) SAVEPOINT active_record_1
41589
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41591
+  (0.0ms) SAVEPOINT active_record_1
41592
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41594
+  (0.0ms) SAVEPOINT active_record_1
41595
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41597
+  (0.1ms) SAVEPOINT active_record_1
41598
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41600
+  (0.0ms) SAVEPOINT active_record_1
41601
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41603
+  (0.0ms) SAVEPOINT active_record_1
41604
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41606
+  (0.0ms) SAVEPOINT active_record_1
41607
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41609
+  (0.0ms) SAVEPOINT active_record_1
41610
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41612
+  (0.0ms) SAVEPOINT active_record_1
41613
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41615
+  (0.0ms) SAVEPOINT active_record_1
41616
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["year", 200]]
41617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41618
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41619
+  (0.0ms) SAVEPOINT active_record_1
41620
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 7"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41622
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41623
+  (0.0ms) SAVEPOINT active_record_1
41624
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 8"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41626
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41627
+  (0.0ms) SAVEPOINT active_record_1
41628
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 9"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41630
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41631
+  (0.0ms) SAVEPOINT active_record_1
41632
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 10"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41634
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41635
+  (0.0ms) SAVEPOINT active_record_1
41636
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 11"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41638
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41639
+  (0.0ms) SAVEPOINT active_record_1
41640
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 12"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41642
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41643
+  (0.0ms) SAVEPOINT active_record_1
41644
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 13"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41646
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41647
+  (0.0ms) SAVEPOINT active_record_1
41648
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 14"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41650
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41651
+  (0.0ms) SAVEPOINT active_record_1
41652
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 15"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41654
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41655
+  (0.0ms) SAVEPOINT active_record_1
41656
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00], ["title", "Harry Potter Vol. 16"], ["updated_at", Thu, 09 Jan 2014 18:34:23 UTC +00:00]]
41657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41658
+  (0.1ms) SELECT COUNT(*) FROM "users" 
41659
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (33, 34, 35)
41660
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (36, 37, 38)
41661
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (10, 11, 12)
41662
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (7, 8, 9)
41663
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
41664
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
41665
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
41666
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
41667
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
41668
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
41669
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
41670
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
41671
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
41672
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
41673
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
41674
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
41675
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41676
+  (0.0ms) SAVEPOINT active_record_1
41677
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user23@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41679
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41680
+  (0.0ms) SAVEPOINT active_record_1
41681
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user24@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41683
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41684
+  (0.0ms) SAVEPOINT active_record_1
41685
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user25@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41687
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41688
+  (0.0ms) SAVEPOINT active_record_1
41689
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user26@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41691
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41692
+  (0.0ms) SAVEPOINT active_record_1
41693
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user27@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41695
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41696
+  (0.0ms) SAVEPOINT active_record_1
41697
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user28@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41699
+  (0.0ms) SAVEPOINT active_record_1
41700
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41702
+  (0.0ms) SAVEPOINT active_record_1
41703
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41705
+  (0.0ms) SAVEPOINT active_record_1
41706
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41708
+  (0.0ms) SAVEPOINT active_record_1
41709
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41711
+  (0.0ms) SAVEPOINT active_record_1
41712
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41714
+  (0.0ms) SAVEPOINT active_record_1
41715
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41717
+  (0.0ms) SAVEPOINT active_record_1
41718
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41720
+  (0.0ms) SAVEPOINT active_record_1
41721
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41723
+  (0.0ms) SAVEPOINT active_record_1
41724
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41726
+  (0.0ms) SAVEPOINT active_record_1
41727
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41729
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41730
+  (0.0ms) SAVEPOINT active_record_1
41731
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 17"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41733
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41734
+  (0.0ms) SAVEPOINT active_record_1
41735
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 18"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41737
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41738
+  (0.0ms) SAVEPOINT active_record_1
41739
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 19"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41741
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41742
+  (0.0ms) SAVEPOINT active_record_1
41743
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 20"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41745
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41746
+  (0.0ms) SAVEPOINT active_record_1
41747
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 21"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41749
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41750
+  (0.0ms) SAVEPOINT active_record_1
41751
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 22"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41753
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41754
+  (0.0ms) SAVEPOINT active_record_1
41755
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 23"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41757
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41758
+  (0.0ms) SAVEPOINT active_record_1
41759
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 24"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41760
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41761
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41762
+  (0.0ms) SAVEPOINT active_record_1
41763
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 25"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41765
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41766
+  (0.0ms) SAVEPOINT active_record_1
41767
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 26"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41769
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41770
+  (0.0ms) SAVEPOINT active_record_1
41771
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user29@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41773
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41774
+  (0.0ms) SAVEPOINT active_record_1
41775
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user30@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41777
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41778
+  (0.0ms) SAVEPOINT active_record_1
41779
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user31@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41781
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41782
+  (0.0ms) SAVEPOINT active_record_1
41783
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user32@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41785
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41786
+  (0.0ms) SAVEPOINT active_record_1
41787
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user33@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41789
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41790
+  (0.0ms) SAVEPOINT active_record_1
41791
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user34@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41793
+  (0.0ms) SAVEPOINT active_record_1
41794
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41796
+  (0.0ms) SAVEPOINT active_record_1
41797
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41799
+  (0.0ms) SAVEPOINT active_record_1
41800
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41802
+  (0.0ms) SAVEPOINT active_record_1
41803
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41805
+  (0.0ms) SAVEPOINT active_record_1
41806
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41808
+  (0.0ms) SAVEPOINT active_record_1
41809
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41811
+  (0.0ms) SAVEPOINT active_record_1
41812
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41814
+  (0.0ms) SAVEPOINT active_record_1
41815
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41817
+  (0.0ms) SAVEPOINT active_record_1
41818
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41820
+  (0.0ms) SAVEPOINT active_record_1
41821
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41823
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
41824
+  (0.0ms) SAVEPOINT active_record_1
41825
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 27"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41827
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41828
+  (0.0ms) SAVEPOINT active_record_1
41829
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 28"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41831
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41832
+  (0.0ms) SAVEPOINT active_record_1
41833
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 29"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41835
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41836
+  (0.0ms) SAVEPOINT active_record_1
41837
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 30"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41839
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41840
+  (0.0ms) SAVEPOINT active_record_1
41841
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 31"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41843
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41844
+  (0.0ms) SAVEPOINT active_record_1
41845
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 32"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41847
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41848
+  (0.0ms) SAVEPOINT active_record_1
41849
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 33"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41851
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41852
+  (0.0ms) SAVEPOINT active_record_1
41853
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 34"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41855
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41856
+  (0.0ms) SAVEPOINT active_record_1
41857
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 35"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41859
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
41860
+  (0.0ms) SAVEPOINT active_record_1
41861
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 36"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41863
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41864
+  (0.0ms) SAVEPOINT active_record_1
41865
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user35@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41867
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41868
+  (0.0ms) SAVEPOINT active_record_1
41869
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user36@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41871
+  (0.0ms) SAVEPOINT active_record_1
41872
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41874
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
41875
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41876
+  (0.0ms) SAVEPOINT active_record_1
41877
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user37@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41879
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41880
+  (0.0ms) SAVEPOINT active_record_1
41881
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user38@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41883
+  (0.0ms) SAVEPOINT active_record_1
41884
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41886
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
41887
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (37)
41888
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (37)
41889
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (37, 38)
41890
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41891
+  (0.0ms) SAVEPOINT active_record_1
41892
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user39@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41894
+  (0.0ms) SAVEPOINT active_record_1
41895
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41897
+  (0.0ms) SAVEPOINT active_record_1
41898
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41900
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41901
+  (0.0ms) SAVEPOINT active_record_1
41902
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 37"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41904
+  (0.0ms) SAVEPOINT active_record_1
41905
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41907
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41908
+  (0.0ms) SAVEPOINT active_record_1
41909
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user40@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41911
+  (0.0ms) SAVEPOINT active_record_1
41912
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41914
+  (0.0ms) SAVEPOINT active_record_1
41915
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41917
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
41918
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41919
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41920
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)
41921
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41922
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41923
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)
41924
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41925
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41926
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68, 69)
41927
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
41928
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
41929
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41930
+  (0.1ms) SAVEPOINT active_record_1
41931
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user41@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41933
+  (0.0ms) SAVEPOINT active_record_1
41934
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41936
+  (0.0ms) SAVEPOINT active_record_1
41937
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41939
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41940
+  (0.0ms) SAVEPOINT active_record_1
41941
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user42@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41943
+  (0.0ms) SAVEPOINT active_record_1
41944
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41946
+  (0.0ms) SAVEPOINT active_record_1
41947
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41949
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41950
+  (0.0ms) SAVEPOINT active_record_1
41951
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user43@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41953
+  (0.0ms) SAVEPOINT active_record_1
41954
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41956
+  (0.0ms) SAVEPOINT active_record_1
41957
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41959
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
41960
+  (0.0ms) SAVEPOINT active_record_1
41961
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user44@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41963
+  (0.0ms) SAVEPOINT active_record_1
41964
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41966
+  (0.0ms) SAVEPOINT active_record_1
41967
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41969
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
41970
+  (0.0ms) SAVEPOINT active_record_1
41971
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user45@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41973
+  (0.0ms) SAVEPOINT active_record_1
41974
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41976
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
41977
+  (0.0ms) SAVEPOINT active_record_1
41978
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 38"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41980
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (76, 77)
41981
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (76, 77)
41982
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
41983
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (76, 77)
41984
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
41985
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
41986
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
41987
+  (0.0ms) SAVEPOINT active_record_1
41988
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user46@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41990
+  (0.0ms) SAVEPOINT active_record_1
41991
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41993
+  (0.0ms) SAVEPOINT active_record_1
41994
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
41995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
41996
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
41997
+  (0.0ms) SAVEPOINT active_record_1
41998
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["name", "Boring Specimen No. 2"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
41999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42000
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42001
+  (0.0ms) SAVEPOINT active_record_1
42002
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user47@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42004
+  (0.0ms) SAVEPOINT active_record_1
42005
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42007
+  (0.0ms) SAVEPOINT active_record_1
42008
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42010
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42011
+  (0.0ms) SAVEPOINT active_record_1
42012
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user48@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42014
+  (0.0ms) SAVEPOINT active_record_1
42015
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42017
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42018
+  (0.0ms) SAVEPOINT active_record_1
42019
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 39"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42021
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42022
+  (0.0ms) SAVEPOINT active_record_1
42023
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 40"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42025
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
42026
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (39)
42027
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42028
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
42029
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (39)
42030
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42031
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
42032
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (39)
42033
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42034
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
42035
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (39)
42036
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42037
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
42038
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (39)
42039
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42040
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42041
+  (0.0ms) SAVEPOINT active_record_1
42042
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user49@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42044
+  (0.0ms) SAVEPOINT active_record_1
42045
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42047
+  (0.0ms) SAVEPOINT active_record_1
42048
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42050
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42051
+  (0.0ms) SAVEPOINT active_record_1
42052
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user50@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42054
+  (0.0ms) SAVEPOINT active_record_1
42055
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42057
+  (0.0ms) SAVEPOINT active_record_1
42058
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42060
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42061
+  (0.0ms) SAVEPOINT active_record_1
42062
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user51@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42064
+  (0.0ms) SAVEPOINT active_record_1
42065
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42067
+  (0.0ms) SAVEPOINT active_record_1
42068
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42070
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42071
+  (0.0ms) SAVEPOINT active_record_1
42072
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user52@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42074
+  (0.0ms) SAVEPOINT active_record_1
42075
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42077
+  (0.0ms) SAVEPOINT active_record_1
42078
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42080
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42081
+  (0.0ms) SAVEPOINT active_record_1
42082
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 41"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42084
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (90)
42085
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (41)
42086
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42087
+  (0.0ms) SAVEPOINT active_record_1
42088
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user53@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42090
+  (0.0ms) SAVEPOINT active_record_1
42091
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42093
+  (0.0ms) SAVEPOINT active_record_1
42094
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42096
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42097
+  (0.0ms) SAVEPOINT active_record_1
42098
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 42"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42100
+  (0.0ms) SAVEPOINT active_record_1
42101
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42103
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42104
+  (0.0ms) SAVEPOINT active_record_1
42105
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user54@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42107
+  (0.0ms) SAVEPOINT active_record_1
42108
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42110
+  (0.0ms) SAVEPOINT active_record_1
42111
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42113
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42114
+  (0.0ms) SAVEPOINT active_record_1
42115
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user55@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42117
+  (0.0ms) SAVEPOINT active_record_1
42118
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42120
+  (0.0ms) SAVEPOINT active_record_1
42121
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42123
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42124
+  (0.0ms) SAVEPOINT active_record_1
42125
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user56@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42127
+  (0.0ms) SAVEPOINT active_record_1
42128
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42130
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42131
+  (0.0ms) SAVEPOINT active_record_1
42132
+ SQL (0.8ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 43"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42134
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42135
+  (0.0ms) SAVEPOINT active_record_1
42136
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 44"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42138
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)
42139
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
42140
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42141
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)
42142
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
42143
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42144
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)
42145
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
42146
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42147
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)
42148
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
42149
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42150
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)
42151
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
42152
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42153
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42154
+  (0.1ms) SAVEPOINT active_record_1
42155
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user57@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42157
+  (0.0ms) SAVEPOINT active_record_1
42158
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42160
+  (0.0ms) SAVEPOINT active_record_1
42161
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42163
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
42164
+  (0.0ms) SAVEPOINT active_record_1
42165
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "Harry Potter Vol. 45"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
42167
+  (0.0ms) SAVEPOINT active_record_1
42168
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42170
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42171
+  (0.0ms) SAVEPOINT active_record_1
42172
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user58@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42174
+  (0.0ms) SAVEPOINT active_record_1
42175
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42177
+  (0.0ms) SAVEPOINT active_record_1
42178
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42180
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42181
+  (0.0ms) SAVEPOINT active_record_1
42182
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user59@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42184
+  (0.0ms) SAVEPOINT active_record_1
42185
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
42187
+  (0.0ms) SAVEPOINT active_record_1
42188
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
42190
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42191
+  (0.0ms) SAVEPOINT active_record_1
42192
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user60@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42194
+  (0.0ms) SAVEPOINT active_record_1
42195
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42197
+  (0.0ms) SAVEPOINT active_record_1
42198
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
42200
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42201
+  (0.0ms) SAVEPOINT active_record_1
42202
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user61@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42204
+  (0.0ms) SAVEPOINT active_record_1
42205
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42207
+  (0.0ms) SAVEPOINT active_record_1
42208
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42210
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42211
+  (0.0ms) SAVEPOINT active_record_1
42212
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user62@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42214
+  (0.0ms) SAVEPOINT active_record_1
42215
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42217
+  (0.0ms) SAVEPOINT active_record_1
42218
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42220
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
42221
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42222
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42223
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)
42224
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42225
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42226
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)
42227
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42228
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42229
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111, 112)
42230
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42231
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42232
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42233
+  (0.0ms) SAVEPOINT active_record_1
42234
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["email", "user63@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00]]
42235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42236
+  (0.0ms) SAVEPOINT active_record_1
42237
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42239
+  (0.0ms) SAVEPOINT active_record_1
42240
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:24 UTC +00:00], ["year", 200]]
42241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42242
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42243
+  (0.0ms) SAVEPOINT active_record_1
42244
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user64@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42246
+  (0.0ms) SAVEPOINT active_record_1
42247
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42249
+  (0.0ms) SAVEPOINT active_record_1
42250
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42252
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
42253
+  (0.0ms) SAVEPOINT active_record_1
42254
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 3"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42256
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42257
+  (0.0ms) SAVEPOINT active_record_1
42258
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user65@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42260
+  (0.0ms) SAVEPOINT active_record_1
42261
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42263
+  (0.0ms) SAVEPOINT active_record_1
42264
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42266
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42267
+  (0.0ms) SAVEPOINT active_record_1
42268
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 46"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42270
+  (0.0ms) SAVEPOINT active_record_1
42271
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42273
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42274
+  (0.0ms) SAVEPOINT active_record_1
42275
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user66@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42277
+  (0.0ms) SAVEPOINT active_record_1
42278
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42280
+  (0.0ms) SAVEPOINT active_record_1
42281
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42283
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42284
+  (0.0ms) SAVEPOINT active_record_1
42285
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user67@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42287
+  (0.0ms) SAVEPOINT active_record_1
42288
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42290
+  (0.0ms) SAVEPOINT active_record_1
42291
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42293
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42294
+  (0.0ms) SAVEPOINT active_record_1
42295
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user68@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42297
+  (0.0ms) SAVEPOINT active_record_1
42298
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42300
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42301
+  (0.0ms) SAVEPOINT active_record_1
42302
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 47"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42304
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
42305
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
42306
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
42307
+ Movie Load (0.2ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
42308
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
42309
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
42310
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42311
+  (0.0ms) SAVEPOINT active_record_1
42312
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user69@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42314
+  (0.0ms) SAVEPOINT active_record_1
42315
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42317
+  (0.0ms) SAVEPOINT active_record_1
42318
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42320
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42321
+  (0.0ms) SAVEPOINT active_record_1
42322
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user70@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42324
+  (0.0ms) SAVEPOINT active_record_1
42325
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42327
+  (0.0ms) SAVEPOINT active_record_1
42328
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42330
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42331
+  (0.0ms) SAVEPOINT active_record_1
42332
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 48"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42334
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (127)
42335
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (48)
42336
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42337
+  (0.0ms) SAVEPOINT active_record_1
42338
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user71@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42340
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42341
+  (0.0ms) SAVEPOINT active_record_1
42342
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user72@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42344
+  (0.0ms) SAVEPOINT active_record_1
42345
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42347
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
42348
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42349
+  (0.0ms) SAVEPOINT active_record_1
42350
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user73@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42352
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42353
+  (0.0ms) SAVEPOINT active_record_1
42354
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user74@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42356
+  (0.0ms) SAVEPOINT active_record_1
42357
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42358
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42359
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
42360
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (73)
42361
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (73)
42362
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (73, 74)
42363
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42364
+  (0.0ms) SAVEPOINT active_record_1
42365
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user75@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42367
+  (0.0ms) SAVEPOINT active_record_1
42368
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42370
+  (0.0ms) SAVEPOINT active_record_1
42371
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42373
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42374
+  (0.0ms) SAVEPOINT active_record_1
42375
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user76@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42377
+  (0.0ms) SAVEPOINT active_record_1
42378
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42380
+  (0.0ms) SAVEPOINT active_record_1
42381
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42383
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
42384
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42385
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42386
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133)
42387
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42388
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42389
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133)
42390
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42391
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42392
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 134)
42393
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
42394
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42395
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42396
+  (0.0ms) SAVEPOINT active_record_1
42397
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user77@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42399
+  (0.0ms) SAVEPOINT active_record_1
42400
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42402
+  (0.1ms) SAVEPOINT active_record_1
42403
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42405
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42406
+  (0.0ms) SAVEPOINT active_record_1
42407
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user78@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42409
+  (0.0ms) SAVEPOINT active_record_1
42410
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42412
+  (0.0ms) SAVEPOINT active_record_1
42413
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42415
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42416
+  (0.0ms) SAVEPOINT active_record_1
42417
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 49"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42419
+  (0.0ms) SAVEPOINT active_record_1
42420
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42422
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42423
+  (0.0ms) SAVEPOINT active_record_1
42424
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user79@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42426
+  (0.0ms) SAVEPOINT active_record_1
42427
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42429
+  (0.0ms) SAVEPOINT active_record_1
42430
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42432
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42433
+  (0.1ms) SAVEPOINT active_record_1
42434
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user80@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42436
+  (0.0ms) SAVEPOINT active_record_1
42437
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42439
+  (0.0ms) SAVEPOINT active_record_1
42440
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42442
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42443
+  (0.0ms) SAVEPOINT active_record_1
42444
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user81@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42446
+  (0.0ms) SAVEPOINT active_record_1
42447
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42449
+  (0.0ms) SAVEPOINT active_record_1
42450
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42452
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42453
+  (0.0ms) SAVEPOINT active_record_1
42454
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user82@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42456
+  (0.0ms) SAVEPOINT active_record_1
42457
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42459
+  (0.0ms) SAVEPOINT active_record_1
42460
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42462
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42463
+  (0.0ms) SAVEPOINT active_record_1
42464
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 50"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42466
+  (0.0ms) SAVEPOINT active_record_1
42467
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42469
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42470
+  (0.0ms) SAVEPOINT active_record_1
42471
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user83@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42473
+  (0.0ms) SAVEPOINT active_record_1
42474
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42476
+  (0.0ms) SAVEPOINT active_record_1
42477
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42479
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42480
+  (0.0ms) SAVEPOINT active_record_1
42481
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 51"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42483
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (149)
42484
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (51)
42485
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42486
+  (0.0ms) SAVEPOINT active_record_1
42487
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user84@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42489
+  (0.0ms) SAVEPOINT active_record_1
42490
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42492
+  (0.0ms) SAVEPOINT active_record_1
42493
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42495
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42496
+  (0.0ms) SAVEPOINT active_record_1
42497
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user85@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42499
+  (0.0ms) SAVEPOINT active_record_1
42500
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42502
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42503
+  (0.0ms) SAVEPOINT active_record_1
42504
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 52"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42506
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42507
+  (0.0ms) SAVEPOINT active_record_1
42508
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 53"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42510
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)
42511
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
42512
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42513
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)
42514
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
42515
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42516
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)
42517
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
42518
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42519
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)
42520
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
42521
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42522
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)
42523
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
42524
+ Car Load (0.1ms) SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
42525
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42526
+  (0.0ms) SAVEPOINT active_record_1
42527
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user86@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42529
+  (0.0ms) SAVEPOINT active_record_1
42530
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42532
+  (0.0ms) SAVEPOINT active_record_1
42533
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42535
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42536
+  (0.0ms) SAVEPOINT active_record_1
42537
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user87@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42539
+  (0.0ms) SAVEPOINT active_record_1
42540
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42542
+  (0.0ms) SAVEPOINT active_record_1
42543
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42545
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
42546
+  (0.0ms) SAVEPOINT active_record_1
42547
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 4"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42549
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42550
+  (0.0ms) SAVEPOINT active_record_1
42551
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user88@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42553
+  (0.0ms) SAVEPOINT active_record_1
42554
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42556
+  (0.0ms) SAVEPOINT active_record_1
42557
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42559
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42560
+  (0.0ms) SAVEPOINT active_record_1
42561
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user89@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42563
+  (0.0ms) SAVEPOINT active_record_1
42564
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42566
+  (0.0ms) SAVEPOINT active_record_1
42567
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42569
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42570
+  (0.0ms) SAVEPOINT active_record_1
42571
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user90@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42573
+  (0.0ms) SAVEPOINT active_record_1
42574
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42576
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42577
+  (0.0ms) SAVEPOINT active_record_1
42578
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 54"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42580
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (160, 161)
42581
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (160, 161)
42582
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (54)
42583
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (160, 161)
42584
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (54)
42585
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (54)
42586
+  (0.0ms) SAVEPOINT active_record_1
42587
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42589
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42590
+  (0.0ms) SAVEPOINT active_record_1
42591
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 55"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42593
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
42594
+  (0.0ms) SAVEPOINT active_record_1
42595
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 5"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42597
+  (0.0ms) SAVEPOINT active_record_1
42598
+ SQL (0.2ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42600
+  (0.0ms) SAVEPOINT active_record_1
42601
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42603
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42604
+  (0.0ms) SAVEPOINT active_record_1
42605
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user91@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42607
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42608
+  (0.0ms) SAVEPOINT active_record_1
42609
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user92@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42611
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42612
+  (0.0ms) SAVEPOINT active_record_1
42613
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user93@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42615
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42616
+  (0.0ms) SAVEPOINT active_record_1
42617
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user94@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42619
+  (0.0ms) SAVEPOINT active_record_1
42620
+ SQL (0.2ms) DELETE FROM "movies" WHERE "movies"."type" IN ('Documentary') AND "movies"."id" = ? [["id", 164]]
42621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42622
+  (0.1ms) SELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (NULL)
42623
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (NULL)
42624
+  (0.0ms) SAVEPOINT active_record_1
42625
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42626
+  (0.2ms) RELEASE SAVEPOINT active_record_1
42627
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42628
+  (0.0ms) SAVEPOINT active_record_1
42629
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 56"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42631
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
42632
+  (0.0ms) SAVEPOINT active_record_1
42633
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 6"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42635
+  (0.0ms) SAVEPOINT active_record_1
42636
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42638
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42639
+  (0.0ms) SAVEPOINT active_record_1
42640
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 57"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42642
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42643
+  (0.0ms) SAVEPOINT active_record_1
42644
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 58"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42646
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42647
+  (0.0ms) SAVEPOINT active_record_1
42648
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user95@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42650
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42651
+  (0.0ms) SAVEPOINT active_record_1
42652
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user96@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42654
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (57, 58, 56)
42655
+  (0.0ms) SAVEPOINT active_record_1
42656
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42658
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42659
+  (0.0ms) SAVEPOINT active_record_1
42660
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 59"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42662
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
42663
+  (0.0ms) SAVEPOINT active_record_1
42664
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 7"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42666
+  (0.0ms) SAVEPOINT active_record_1
42667
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42669
+  (0.0ms) SAVEPOINT active_record_1
42670
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42672
+  (0.0ms) SAVEPOINT active_record_1
42673
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "red"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", "Car"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42675
+  (0.0ms) SAVEPOINT active_record_1
42676
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "white"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", "Boat"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42678
+  (0.0ms) SAVEPOINT active_record_1
42679
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42681
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
42682
+  (0.0ms) SAVEPOINT active_record_1
42683
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 60"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42685
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
42686
+  (0.0ms) SAVEPOINT active_record_1
42687
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 8"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42689
+  (0.0ms) SAVEPOINT active_record_1
42690
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42692
+  (0.0ms) SAVEPOINT active_record_1
42693
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42695
+  (0.0ms) SAVEPOINT active_record_1
42696
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42698
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42699
+  (0.0ms) SAVEPOINT active_record_1
42700
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user97@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42702
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42703
+  (0.0ms) SAVEPOINT active_record_1
42704
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user98@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42706
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (169, 168)
42707
+  (0.0ms) SAVEPOINT active_record_1
42708
+ SQL (0.2ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42710
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42711
+  (0.0ms) SAVEPOINT active_record_1
42712
+ SQL (0.2ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 61"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42714
+  (0.1ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
42715
+  (0.0ms) SAVEPOINT active_record_1
42716
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 9"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42718
+  (0.0ms) SAVEPOINT active_record_1
42719
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42721
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42722
+  (0.0ms) SAVEPOINT active_record_1
42723
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user99@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42725
+  (0.0ms) SAVEPOINT active_record_1
42726
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42728
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42729
+  (0.0ms) SAVEPOINT active_record_1
42730
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 62"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42732
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks" 
42733
+  (0.0ms) SAVEPOINT active_record_1
42734
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 10"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42736
+  (0.0ms) SAVEPOINT active_record_1
42737
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42739
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42740
+  (0.0ms) SAVEPOINT active_record_1
42741
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 63"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42743
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42744
+  (0.0ms) SAVEPOINT active_record_1
42745
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 64"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42747
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42748
+  (0.0ms) SAVEPOINT active_record_1
42749
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user100@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42751
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users"
42752
+  (0.0ms) SAVEPOINT active_record_1
42753
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user101@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42755
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (63, 64, 62)
42756
+  (0.0ms) SAVEPOINT active_record_1
42757
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42759
+  (0.1ms) SELECT MAX("books"."id") AS max_id FROM "books"
42760
+  (0.0ms) SAVEPOINT active_record_1
42761
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 65"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42763
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
42764
+  (0.0ms) SAVEPOINT active_record_1
42765
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 11"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42767
+  (0.0ms) SAVEPOINT active_record_1
42768
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42770
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42771
+  (0.0ms) SAVEPOINT active_record_1
42772
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user102@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42774
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42775
+  (0.0ms) SAVEPOINT active_record_1
42776
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user103@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42778
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42779
+  (0.0ms) SAVEPOINT active_record_1
42780
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user104@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42782
+  (0.1ms) SAVEPOINT active_record_1
42783
+ SQL (0.1ms) DELETE FROM "movies" WHERE "movies"."id" = ? [["id", 173]]
42784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42785
+  (0.0ms) SAVEPOINT active_record_1
42786
+ SQL (0.1ms) DELETE FROM "books" WHERE "books"."id" = ? [["id", 65]]
42787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42788
+  (0.1ms) SELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (NULL)
42789
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (NULL)
42790
+  (0.0ms) SAVEPOINT active_record_1
42791
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42793
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42794
+  (0.0ms) SAVEPOINT active_record_1
42795
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 65"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42797
+  (0.0ms) SELECT MAX("rocks"."id") AS max_id FROM "rocks"
42798
+  (0.0ms) SAVEPOINT active_record_1
42799
+ SQL (0.1ms) INSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["name", "Boring Specimen No. 12"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42801
+  (0.0ms) SAVEPOINT active_record_1
42802
+ SQL (0.1ms) INSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?) [["color", "blue"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42803
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42804
+  (0.0ms) SAVEPOINT active_record_1
42805
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42807
+  (0.0ms) SAVEPOINT active_record_1
42808
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42810
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42811
+  (0.0ms) SAVEPOINT active_record_1
42812
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user105@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42814
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42815
+  (0.0ms) SAVEPOINT active_record_1
42816
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user106@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42818
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (176, 175, 174)
42819
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42820
+  (0.0ms) SAVEPOINT active_record_1
42821
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user107@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42822
+  (0.1ms) RELEASE SAVEPOINT active_record_1
42823
+  (0.0ms) SAVEPOINT active_record_1
42824
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42826
+  (0.1ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42827
+  (0.0ms) SAVEPOINT active_record_1
42828
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user108@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42830
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42831
+  (0.0ms) SAVEPOINT active_record_1
42832
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user109@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42834
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42835
+  (0.0ms) SAVEPOINT active_record_1
42836
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user110@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42838
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42839
+  (0.0ms) SAVEPOINT active_record_1
42840
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user111@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42842
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42843
+  (0.0ms) SAVEPOINT active_record_1
42844
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user112@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42846
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42847
+  (0.0ms) SAVEPOINT active_record_1
42848
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user113@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42850
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42851
+  (0.0ms) SAVEPOINT active_record_1
42852
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user114@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42854
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42855
+  (0.0ms) SAVEPOINT active_record_1
42856
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user115@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42858
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users" 
42859
+  (0.0ms) SAVEPOINT active_record_1
42860
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user116@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42862
+  (0.0ms) SAVEPOINT active_record_1
42863
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42865
+  (0.0ms) SAVEPOINT active_record_1
42866
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42868
+  (0.0ms) SAVEPOINT active_record_1
42869
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42871
+  (0.0ms) SAVEPOINT active_record_1
42872
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42874
+  (0.0ms) SAVEPOINT active_record_1
42875
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42877
+  (0.0ms) SAVEPOINT active_record_1
42878
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42880
+  (0.0ms) SAVEPOINT active_record_1
42881
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42883
+  (0.0ms) SAVEPOINT active_record_1
42884
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42886
+  (0.0ms) SAVEPOINT active_record_1
42887
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42889
+  (0.0ms) SAVEPOINT active_record_1
42890
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42892
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42893
+  (0.0ms) SAVEPOINT active_record_1
42894
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 67"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42896
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42897
+  (0.0ms) SAVEPOINT active_record_1
42898
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 68"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42900
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42901
+  (0.0ms) SAVEPOINT active_record_1
42902
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 69"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42904
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42905
+  (0.0ms) SAVEPOINT active_record_1
42906
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 70"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42908
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42909
+  (0.0ms) SAVEPOINT active_record_1
42910
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 71"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42912
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42913
+  (0.0ms) SAVEPOINT active_record_1
42914
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 72"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42916
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42917
+  (0.0ms) SAVEPOINT active_record_1
42918
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 73"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42920
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42921
+  (0.0ms) SAVEPOINT active_record_1
42922
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 74"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42924
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42925
+  (0.0ms) SAVEPOINT active_record_1
42926
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 75"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42928
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books" 
42929
+  (0.0ms) SAVEPOINT active_record_1
42930
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 76"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42932
+  (0.1ms) SELECT COUNT(*) FROM "users" 
42933
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (113, 115, 114, 112, 116)
42934
+  (0.1ms) SELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (185)
42935
+  (0.1ms) SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (74, 73)
42936
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (111, 115, 114, 112, 116)
42937
+  (0.0ms) SAVEPOINT active_record_1
42938
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 111]]
42939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42940
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (115, 114, 112, 116)
42941
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42942
+  (0.0ms) SAVEPOINT active_record_1
42943
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user117@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42945
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42946
+  (0.0ms) SAVEPOINT active_record_1
42947
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user118@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42949
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42950
+  (0.0ms) SAVEPOINT active_record_1
42951
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user119@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42953
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42954
+  (0.0ms) SAVEPOINT active_record_1
42955
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user120@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42957
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42958
+  (0.0ms) SAVEPOINT active_record_1
42959
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user121@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42961
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
42962
+  (0.0ms) SAVEPOINT active_record_1
42963
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["email", "user122@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42965
+  (0.0ms) SAVEPOINT active_record_1
42966
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42968
+  (0.0ms) SAVEPOINT active_record_1
42969
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42971
+  (0.0ms) SAVEPOINT active_record_1
42972
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42974
+  (0.0ms) SAVEPOINT active_record_1
42975
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42977
+  (0.0ms) SAVEPOINT active_record_1
42978
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42980
+  (0.0ms) SAVEPOINT active_record_1
42981
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42983
+  (0.0ms) SAVEPOINT active_record_1
42984
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42986
+  (0.0ms) SAVEPOINT active_record_1
42987
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42989
+  (0.0ms) SAVEPOINT active_record_1
42990
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42992
+  (0.0ms) SAVEPOINT active_record_1
42993
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["year", 200]]
42994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42995
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
42996
+  (0.0ms) SAVEPOINT active_record_1
42997
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 77"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
42998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
42999
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43000
+  (0.0ms) SAVEPOINT active_record_1
43001
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 78"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43003
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43004
+  (0.0ms) SAVEPOINT active_record_1
43005
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 79"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43007
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43008
+  (0.0ms) SAVEPOINT active_record_1
43009
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 80"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43011
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43012
+  (0.0ms) SAVEPOINT active_record_1
43013
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 81"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43015
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43016
+  (0.0ms) SAVEPOINT active_record_1
43017
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 82"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43019
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43020
+  (0.0ms) SAVEPOINT active_record_1
43021
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 83"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43023
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43024
+  (0.0ms) SAVEPOINT active_record_1
43025
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 84"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43027
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43028
+  (0.0ms) SAVEPOINT active_record_1
43029
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 85"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43031
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43032
+  (0.0ms) SAVEPOINT active_record_1
43033
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00], ["title", "Harry Potter Vol. 86"], ["updated_at", Thu, 09 Jan 2014 18:34:25 UTC +00:00]]
43034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43035
+  (0.1ms) SELECT COUNT(*) FROM "users"
43036
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IN (119, 121, 120, 118, 122)
43037
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
43038
+  (0.0ms) SAVEPOINT active_record_1
43039
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["email", "user123@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43041
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
43042
+  (0.0ms) SAVEPOINT active_record_1
43043
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["email", "user124@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43045
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
43046
+  (0.0ms) SAVEPOINT active_record_1
43047
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["email", "user125@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43049
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
43050
+  (0.0ms) SAVEPOINT active_record_1
43051
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["email", "user126@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43053
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
43054
+  (0.0ms) SAVEPOINT active_record_1
43055
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["email", "user127@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43057
+  (0.0ms) SELECT MAX("users"."id") AS max_id FROM "users"
43058
+  (0.0ms) SAVEPOINT active_record_1
43059
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["email", "user128@example.com"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43061
+  (0.0ms) SAVEPOINT active_record_1
43062
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43064
+  (0.0ms) SAVEPOINT active_record_1
43065
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43067
+  (0.0ms) SAVEPOINT active_record_1
43068
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43070
+  (0.0ms) SAVEPOINT active_record_1
43071
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43073
+  (0.0ms) SAVEPOINT active_record_1
43074
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac5b0@/Users/david/Documents/Code/recommendable/test/factories.rb:7>: A Space Odyssey"], ["type", nil], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43076
+  (0.0ms) SAVEPOINT active_record_1
43077
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43079
+  (0.0ms) SAVEPOINT active_record_1
43080
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43082
+  (0.0ms) SAVEPOINT active_record_1
43083
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43085
+  (0.0ms) SAVEPOINT active_record_1
43086
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43088
+  (0.0ms) SAVEPOINT active_record_1
43089
+ SQL (0.1ms) INSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "#<Proc:0x007fac8a0ac420@/Users/david/Documents/Code/recommendable/test/factories.rb:12>: A Space Documentary"], ["type", "Documentary"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["year", 200]]
43090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43091
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43092
+  (0.0ms) SAVEPOINT active_record_1
43093
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 87"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43095
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43096
+  (0.0ms) SAVEPOINT active_record_1
43097
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 88"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43099
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43100
+  (0.0ms) SAVEPOINT active_record_1
43101
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 89"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43103
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43104
+  (0.0ms) SAVEPOINT active_record_1
43105
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 90"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43107
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43108
+  (0.0ms) SAVEPOINT active_record_1
43109
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 91"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43111
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43112
+  (0.0ms) SAVEPOINT active_record_1
43113
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 92"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43115
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43116
+  (0.0ms) SAVEPOINT active_record_1
43117
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 93"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43119
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43120
+  (0.0ms) SAVEPOINT active_record_1
43121
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 94"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43123
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43124
+  (0.0ms) SAVEPOINT active_record_1
43125
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 95"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43127
+  (0.0ms) SELECT MAX("books"."id") AS max_id FROM "books"
43128
+  (0.0ms) SAVEPOINT active_record_1
43129
+ SQL (0.1ms) INSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["author", "J.K. Rowling"], ["created_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00], ["title", "Harry Potter Vol. 96"], ["updated_at", Thu, 09 Jan 2014 18:34:26 UTC +00:00]]
43130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43131
+  (0.1ms) SELECT COUNT(*) FROM "users"
43132
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)
43133
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)
43134
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)
43135
+ Movie Load (0.1ms) SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)
43136
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)
43137
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)
43138
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)
43139
+ Book Load (0.1ms) SELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)
43140
+  (1.6ms) rollback transaction