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.
- checksums.yaml +4 -4
- data/lib/recommendable/helpers/redis_key_mapper.rb +23 -6
- data/lib/recommendable/ratable.rb +16 -3
- data/lib/recommendable/version.rb +10 -5
- data/test/dummy/app/models/boat.rb +3 -0
- data/test/dummy/app/models/book.rb +1 -1
- data/test/dummy/app/models/car.rb +4 -0
- data/test/dummy/app/models/documentary.rb +3 -0
- data/test/dummy/app/models/movie.rb +1 -1
- data/test/dummy/app/models/rock.rb +1 -1
- data/test/dummy/app/models/user.rb +2 -2
- data/test/dummy/app/models/vehicle.rb +3 -0
- data/test/dummy/config/application.rb +1 -1
- data/test/dummy/config/environments/development.rb +5 -5
- data/test/dummy/config/environments/test.rb +5 -5
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20131226071447_create_vehicles.rb +10 -0
- data/test/dummy/db/migrate/20131226165647_add_type_to_movie.rb +5 -0
- data/test/dummy/db/schema.rb +22 -14
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +3164 -0
- data/test/factories.rb +20 -0
- data/test/recommendable/helpers/calculations_test.rb +2 -1
- data/test/recommendable/helpers/redis_key_mapper_test.rb +65 -0
- data/test/recommendable/ratable_test.rb +87 -1
- data/test/recommendable/rater/bookmarker_test.rb +29 -2
- data/test/recommendable/rater/disliker_test.rb +29 -2
- data/test/recommendable/rater/hider_test.rb +27 -1
- data/test/recommendable/rater/liker_test.rb +29 -2
- data/test/recommendable/rater/recommender_test.rb +2 -1
- data/test/test_helper.rb +1 -2
- metadata +41 -46
- data/test/dummy/db/test.sqlite3-journal +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 213522a52202788916de5834e1a8a585266d954d
|
4
|
+
data.tar.gz: e54f03c20982d91e83e5f6426f2d696ebf266077
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
[
|
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
|
-
[
|
12
|
+
[redis_namespace, user_namespace, id, 'similarities'].compact.join(':')
|
13
13
|
end
|
14
14
|
|
15
15
|
def liked_by_set_for(klass, id)
|
16
|
-
[
|
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
|
-
[
|
20
|
+
[redis_namespace, ratable_namespace(klass), id, 'disliked_by'].compact.join(':')
|
21
21
|
end
|
22
22
|
|
23
23
|
def score_set_for(klass)
|
24
|
-
[
|
24
|
+
[redis_namespace, ratable_namespace(klass), 'scores'].join(':')
|
25
25
|
end
|
26
26
|
|
27
27
|
def temp_set_for(klass, id)
|
28
|
-
[
|
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(
|
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,
|
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
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
class Version
|
3
|
+
MAJOR = 2
|
4
|
+
MINOR = 1
|
5
|
+
PATCH = 3
|
6
6
|
|
7
|
-
|
7
|
+
def self.to_s
|
8
|
+
[MAJOR, MINOR, PATCH].join('.')
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
VERSION = Version.to_s.freeze
|
8
13
|
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
|
-
|
26
|
-
|
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
|
-
|
33
|
-
|
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
|
Binary file
|
data/test/dummy/db/schema.rb
CHANGED
@@ -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
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:
|
14
|
+
ActiveRecord::Schema.define(version: 20131226165647) do
|
15
15
|
|
16
|
-
create_table "books", :
|
16
|
+
create_table "books", force: true do |t|
|
17
17
|
t.string "title"
|
18
18
|
t.string "author"
|
19
|
-
t.datetime "created_at", :
|
20
|
-
t.datetime "updated_at", :
|
19
|
+
t.datetime "created_at", null: false
|
20
|
+
t.datetime "updated_at", null: false
|
21
21
|
end
|
22
22
|
|
23
|
-
create_table "movies", :
|
23
|
+
create_table "movies", force: true do |t|
|
24
24
|
t.string "title"
|
25
25
|
t.integer "year"
|
26
|
-
t.datetime "created_at", :
|
27
|
-
t.datetime "updated_at", :
|
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", :
|
31
|
+
create_table "rocks", force: true do |t|
|
31
32
|
t.string "name"
|
32
|
-
t.datetime "created_at", :
|
33
|
-
t.datetime "updated_at", :
|
33
|
+
t.datetime "created_at", null: false
|
34
|
+
t.datetime "updated_at", null: false
|
34
35
|
end
|
35
36
|
|
36
|
-
create_table "users", :
|
37
|
+
create_table "users", force: true do |t|
|
37
38
|
t.string "email"
|
38
|
-
t.datetime "created_at", :
|
39
|
-
t.datetime "updated_at", :
|
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
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/test/dummy/log/test.log
CHANGED
@@ -39974,3 +39974,3167 @@ Connecting to database specified by database.yml
|
|
39974
39974
|
[1m[35mSQL (0.1ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 105]]
|
39975
39975
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
39976
39976
|
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (109, 108, 106, 110)
|
39977
|
+
Connecting to database specified by database.yml
|
39978
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
39979
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
39980
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
39981
|
+
[1m[35mSQL (2.7ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
39983
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
39984
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
39986
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
39987
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
39988
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
39990
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
39991
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
39992
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
39994
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
39995
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
39997
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
39998
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
39999
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40001
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40002
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40004
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40005
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40006
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40008
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40009
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40011
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40012
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40013
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40015
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40016
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40018
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40019
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40020
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40022
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40023
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40024
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40026
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)[0m
|
40027
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
|
40028
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)[0m
|
40029
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
|
40030
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)[0m
|
40031
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
|
40032
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (4)[0m
|
40033
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
|
40034
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40035
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40036
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40038
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40039
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40041
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40042
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40043
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40045
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40046
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40048
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40049
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40050
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40052
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40053
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40055
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40056
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40057
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40059
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (7)
|
40060
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (4)[0m
|
40061
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (7)
|
40062
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (4)[0m
|
40063
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40064
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40065
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40067
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40068
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40070
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40071
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40072
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40074
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40075
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40077
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40078
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40079
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40082
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40084
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40085
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40086
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40088
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40089
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40091
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
|
40092
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
40093
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (12)
|
40094
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
40095
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40096
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40097
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40099
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40100
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40102
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40103
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40104
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40106
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40107
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40109
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40110
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40111
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40113
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40114
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40116
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40117
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40118
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40120
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40121
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40123
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40124
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40125
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40127
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (16)
|
40128
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (6)[0m
|
40129
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40130
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40131
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40133
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40134
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40135
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40137
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40138
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40139
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40141
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40142
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40143
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40145
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40146
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40147
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40149
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40150
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40151
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40153
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40154
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40156
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40157
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40159
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40160
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40162
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40163
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40165
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40166
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40168
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40169
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40171
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40172
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40174
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40175
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40177
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40178
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40180
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40181
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40183
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40184
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40185
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40187
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40188
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40189
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40191
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40192
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40193
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40195
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40196
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40197
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40199
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40200
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40201
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40203
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40204
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40205
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40207
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40208
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40209
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40211
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40212
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40213
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40215
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40216
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40217
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40219
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40220
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40221
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40223
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
40224
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (17, 18, 19)[0m
|
40225
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (20, 21, 22)
|
40226
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (10, 11, 12)[0m
|
40227
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (7, 8, 9)
|
40228
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)[0m
|
40229
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
|
40230
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)[0m
|
40231
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
|
40232
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)[0m
|
40233
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 25, 24, 23)
|
40234
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)[0m
|
40235
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
|
40236
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)[0m
|
40237
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
|
40238
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)[0m
|
40239
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
|
40240
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40241
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40242
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40244
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40245
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40246
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40248
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40249
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40250
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40252
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40253
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40254
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40256
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40257
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40258
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40260
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40261
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40262
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40264
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40265
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40268
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40270
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40271
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40273
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40274
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40276
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40277
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40279
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40280
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40282
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40283
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40285
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40286
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40288
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40289
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40291
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40292
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
40294
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40295
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40296
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40298
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40299
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40300
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40302
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40303
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40304
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40306
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40307
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40308
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40310
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40311
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40312
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40314
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40315
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40316
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40318
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40319
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40320
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40322
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40323
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40324
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40326
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40327
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40328
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40330
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40331
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
40332
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40334
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40335
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40336
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40338
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40339
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40340
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40342
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40343
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40344
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40346
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40347
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40348
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40350
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40351
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40352
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40354
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40355
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40356
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40358
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40359
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40361
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40362
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40364
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40365
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40367
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40368
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40370
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40371
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40373
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40374
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40376
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40377
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40379
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40380
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40382
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40383
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40386
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40388
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40389
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40390
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40392
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40393
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40394
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40396
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40398
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40400
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40401
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40402
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40404
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40405
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40406
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40408
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40410
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40412
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40413
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40414
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40416
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40417
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40418
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40420
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40421
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40422
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40424
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40425
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40426
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40428
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40430
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40432
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40433
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40434
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40437
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40439
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
|
40440
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40441
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40442
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40444
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40445
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40446
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40448
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40449
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40451
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
|
40452
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (35)[0m
|
40453
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (35)
|
40454
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (35, 36)[0m
|
40455
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40456
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40457
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40459
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40460
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40462
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)[0m
|
40463
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
40464
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (49)[0m
|
40465
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
40466
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40467
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
40468
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40470
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40471
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40473
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40474
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40475
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40478
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40480
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40481
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40482
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40484
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40485
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40487
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40488
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40489
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40491
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40492
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40494
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40495
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
40496
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40498
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40499
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40501
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40502
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40503
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40505
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40506
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40507
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40509
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
|
40510
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (38)[0m
|
40511
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
|
40512
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (38)[0m
|
40513
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
|
40514
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (38)[0m
|
40515
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (53)
|
40516
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (38)[0m
|
40517
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40518
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40519
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40521
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40522
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40524
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40525
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40526
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40528
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
40529
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40531
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40532
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40533
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40535
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40536
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40538
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40539
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40540
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40542
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (56)[0m
|
40543
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (40)
|
40544
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (56)[0m
|
40545
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (40)
|
40546
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40547
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40548
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40550
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40551
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40553
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40554
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40555
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40557
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40558
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40560
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40562
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40565
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40567
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40568
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40569
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40572
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40574
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
40575
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40576
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40578
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40579
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40580
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40582
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40583
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40585
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40586
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40587
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40589
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40590
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40592
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40593
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40594
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40596
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40597
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40599
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40600
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40601
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40603
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (64)
|
40604
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (42)[0m
|
40605
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40606
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40607
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40609
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40610
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40612
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40613
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40614
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40616
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40617
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40619
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40620
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40621
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40623
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40624
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40626
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40627
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40628
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
40630
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40631
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40633
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40634
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40635
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40637
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40638
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40640
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40641
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40642
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40644
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)[0m
|
40645
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (44)
|
40646
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)[0m
|
40647
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (44)
|
40648
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40649
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40650
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40652
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40653
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40655
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40656
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40657
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40659
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40660
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40662
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40663
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40664
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40666
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40667
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40668
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40670
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)[0m
|
40671
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
|
40672
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)[0m
|
40673
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
|
40674
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)[0m
|
40675
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
|
40676
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (70)[0m
|
40677
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (45)
|
40678
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40679
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40680
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40682
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40683
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40685
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40687
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40689
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
40690
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40692
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40693
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40694
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40696
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40697
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40699
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40700
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40701
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40703
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40704
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40706
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40708
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40710
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40711
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40713
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40714
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40715
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40717
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40718
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40720
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40721
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40722
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40724
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40725
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40727
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40728
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40729
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40731
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (78)
|
40732
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (48)[0m
|
40733
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40734
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40735
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40737
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40738
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40740
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
40741
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40742
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40744
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40745
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40746
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40748
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40749
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40751
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
|
40752
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
40753
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (80)
|
40754
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
40755
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40756
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40757
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40759
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40760
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40761
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40763
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40764
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40766
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)[0m
|
40767
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40768
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40769
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40771
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40772
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40773
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40776
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40778
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)[0m
|
40779
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (67)
|
40780
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (67)[0m
|
40781
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (67, 68)
|
40782
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40783
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40784
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40786
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
40787
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40789
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40791
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40793
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40794
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40796
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40797
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40798
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40800
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (83)[0m
|
40801
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
|
40802
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (83)[0m
|
40803
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (49)
|
40804
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40805
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
40806
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40808
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40809
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40811
|
+
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
40812
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40813
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40815
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40816
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40817
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40819
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40820
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40822
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40824
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40826
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40827
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40829
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40830
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40831
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40833
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40834
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40836
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40837
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40838
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40840
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40841
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40843
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40844
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40845
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40847
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40849
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40851
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
|
40852
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (50)[0m
|
40853
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
|
40854
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (50)[0m
|
40855
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
|
40856
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (50)[0m
|
40857
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (88)
|
40858
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (50)[0m
|
40859
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40861
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40863
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
40864
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40866
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40867
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40868
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40870
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40871
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40873
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40874
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
40875
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40877
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40878
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40880
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40881
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40882
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40884
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40885
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40887
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40888
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40889
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40892
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40894
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40895
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40896
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40898
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40899
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40901
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40902
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40903
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40905
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40906
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40908
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)[0m
|
40909
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
40910
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (96)[0m
|
40911
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
40912
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40913
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40914
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40916
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40917
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40919
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40920
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40921
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40923
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40924
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40926
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40927
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40928
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40930
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (98)[0m
|
40931
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (54)
|
40932
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40933
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40935
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40936
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40937
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40939
|
+
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
40940
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40941
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40943
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40944
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40946
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
40947
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40948
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40950
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
40951
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40952
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40954
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40955
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40956
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40958
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40959
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40960
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40962
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
40963
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40964
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40966
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
40967
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "movies" WHERE "movies"."id" = ? [["id", 100]]
|
40968
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40969
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
40970
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 56]]
|
40971
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
40972
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (NULL)[0m
|
40973
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (NULL)
|
40974
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40975
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40977
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40978
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40979
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40981
|
+
[1m[35m (0.0ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
40982
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40983
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40985
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40986
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40987
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40989
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
40990
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40991
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40993
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40994
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40995
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
40997
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
40998
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
40999
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41001
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (58, 59, 57)
|
41002
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41003
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41005
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41006
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41007
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41009
|
+
[1m[35m (0.0ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
41010
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41011
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41013
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41014
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41015
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41017
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41018
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41019
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41021
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41022
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41024
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41025
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41026
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41028
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41029
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41030
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41032
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41033
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41034
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41036
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41037
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41038
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41040
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41041
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41042
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41044
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41045
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41046
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41048
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41049
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41050
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41052
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41053
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41054
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41056
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41057
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41058
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
41060
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41061
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41063
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41064
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41066
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41067
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41069
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41070
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41072
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41073
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41075
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41076
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41078
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41079
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41082
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41084
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41085
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41087
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41088
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41090
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41091
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41092
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41094
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41095
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41096
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41098
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41099
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41100
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41102
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41103
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41104
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41106
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41107
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41108
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41110
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41111
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41112
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41114
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41115
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41116
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41118
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41119
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41120
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41122
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41123
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41124
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41126
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41128
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41130
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
41131
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (95, 97, 96, 94, 98)
|
41132
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (111)[0m
|
41133
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (68, 67)
|
41134
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (93, 97, 96, 94, 98)[0m
|
41135
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41136
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "users" WHERE "users"."id" = ?[0m [["id", 93]]
|
41137
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41138
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (97, 96, 94, 98)[0m
|
41139
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41140
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41141
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41143
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41144
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41145
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41147
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41148
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41149
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41151
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41152
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41153
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41155
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41156
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41157
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41159
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41160
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41161
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41163
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41164
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41166
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41167
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41169
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41170
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41172
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41173
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41175
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41176
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41178
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41179
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41181
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41182
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41184
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41185
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41187
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41188
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41190
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41191
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41193
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41194
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
41195
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41197
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41198
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41199
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41201
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41202
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
41203
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41205
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41206
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41207
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41209
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41210
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41211
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41213
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41214
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41215
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41217
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41218
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41219
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41221
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41222
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41223
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41225
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41226
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41227
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41229
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41230
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41231
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41233
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
41234
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (101, 103, 102, 100, 104)[0m
|
41235
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41236
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41237
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41239
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41240
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41241
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41243
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41244
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41245
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41247
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41248
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41249
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41251
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41252
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41253
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41255
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41256
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41257
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41259
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41260
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41262
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41263
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
41266
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41268
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41269
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41271
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41272
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41274
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41275
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41277
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41278
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41280
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41281
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41283
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
41284
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "updated_at", "year") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41286
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41287
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41289
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41290
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41291
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41293
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41294
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41295
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41297
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41298
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
41299
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41301
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41302
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41303
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41305
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41306
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41307
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41309
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41310
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41311
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41313
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41314
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41315
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41317
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41318
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41319
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41321
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41322
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41323
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41325
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41326
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41327
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41329
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
41330
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)[0m
|
41331
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)
|
41332
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)[0m
|
41333
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 132, 131)
|
41334
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (88, 87, 90, 89)[0m
|
41335
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (88, 87, 90, 89)
|
41336
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (88, 87, 90, 89)[0m
|
41337
|
+
[1m[35mBook Load (0.1ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
41341
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41342
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41343
|
+
[1m[35mSQL (2.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41345
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41346
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41348
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41349
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41351
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41352
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41353
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41355
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41356
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41358
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41359
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41360
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41362
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41363
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41365
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41366
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41368
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41369
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41370
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41372
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41373
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41375
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41376
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41378
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41379
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41380
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41382
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41383
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41386
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41388
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41389
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41390
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41392
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41393
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41395
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41396
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41398
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41399
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41400
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41402
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41403
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41405
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41406
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41407
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41409
|
+
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (10, 11)
|
41410
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (10, 11)[0m
|
41411
|
+
[1m[35mBook Load (0.3ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
|
41412
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (10, 11)[0m
|
41413
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (2)
|
41414
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (2)[0m
|
41415
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41416
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
41417
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41419
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41420
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41422
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41423
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41425
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41426
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41427
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41430
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41432
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41433
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41434
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41436
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41437
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41438
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
41440
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)[0m
|
41441
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
|
41442
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
41443
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)
|
41444
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (3)[0m
|
41445
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
41446
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)[0m
|
41447
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
|
41448
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
41449
|
+
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)
|
41450
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (3)[0m
|
41451
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
41452
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (13, 14)[0m
|
41453
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (3)
|
41454
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
41455
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41456
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41457
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41459
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41460
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41462
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41463
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41465
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41466
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41467
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41469
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41470
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41472
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41473
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41475
|
+
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
41476
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41477
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41479
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41480
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41481
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41483
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41484
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41486
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41487
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41489
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41490
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41491
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41493
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41494
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41497
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41499
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41500
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41501
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41503
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41504
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41506
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41507
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41509
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41510
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41511
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41513
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41514
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41516
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41517
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41519
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
|
41520
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
41521
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
41522
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)[0m
|
41523
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
41524
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
41525
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26)
|
41526
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
41527
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
41528
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (26, 27)[0m
|
41529
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
41530
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
41531
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41532
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41533
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41535
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41536
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41539
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41541
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41542
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41543
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41545
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41546
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41548
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41549
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41550
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41552
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41553
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41555
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41556
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41558
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41559
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41560
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41562
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (31)[0m
|
41563
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (6)
|
41564
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41565
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41566
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41568
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41569
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41570
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41572
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41573
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41574
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41576
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41577
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41578
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41580
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41581
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41582
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41584
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41585
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41586
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41588
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41589
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41591
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41592
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41594
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41595
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41597
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
41598
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41600
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41601
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41603
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41604
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41606
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41607
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41609
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41610
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41612
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41613
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41615
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41616
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41618
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41619
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41620
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41622
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41623
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41624
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41626
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41627
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41628
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41630
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41632
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41634
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41635
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41636
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41638
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41639
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41640
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41642
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41643
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41644
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41646
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41647
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41648
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41650
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41651
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41652
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41654
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41655
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41656
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41658
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
41659
|
+
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (33, 34, 35)
|
41660
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (36, 37, 38)[0m
|
41661
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (10, 11, 12)
|
41662
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (7, 8, 9)[0m
|
41663
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
|
41664
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)[0m
|
41665
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
|
41666
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)[0m
|
41667
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)
|
41668
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (42, 41, 40, 39)[0m
|
41669
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
|
41670
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)[0m
|
41671
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
|
41672
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)[0m
|
41673
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)
|
41674
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (14, 13, 16, 15)[0m
|
41675
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41676
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41677
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41679
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41680
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41681
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41683
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41684
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41685
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41687
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41688
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41689
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41691
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41692
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41693
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41695
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41696
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41697
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41699
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41700
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41702
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41703
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41705
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41706
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41708
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41709
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41712
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41714
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41715
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41717
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41718
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41720
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41721
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41723
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41724
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41726
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41727
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41729
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41730
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41731
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41733
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41734
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41735
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41737
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41738
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41739
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41741
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41742
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41743
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41745
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41746
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41747
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41749
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41750
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41751
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41753
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41754
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41755
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41757
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41758
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41759
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41761
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41762
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41763
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41765
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41766
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41767
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41769
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41770
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41771
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41773
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41774
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41775
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41777
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41778
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41779
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41781
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41782
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41783
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41785
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41786
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41787
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41789
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41791
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41793
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41794
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41796
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41797
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41799
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41800
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41802
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41803
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41805
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41806
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41808
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41809
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41811
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41812
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41814
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41815
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41817
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41818
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41820
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41821
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41823
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41824
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41825
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41827
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41828
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41829
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41831
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41832
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41833
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41835
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41836
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41837
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41839
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41840
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41841
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41843
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41844
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41845
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41847
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41849
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41851
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41852
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41853
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41855
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41856
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41857
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41859
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
41860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41861
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41863
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41864
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41865
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41867
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41868
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41869
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41871
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41872
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41874
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)[0m
|
41875
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41876
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41877
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41879
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41881
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41883
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41884
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41886
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)[0m
|
41887
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (37)
|
41888
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (37)[0m
|
41889
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (37, 38)
|
41890
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41892
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41894
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41895
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41897
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41898
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41900
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41901
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41902
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41904
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41905
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41907
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41908
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41909
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41911
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41912
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41914
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41915
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41917
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
|
41918
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
41919
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
41920
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)[0m
|
41921
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
41922
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
41923
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68)
|
41924
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
41925
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
41926
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (68, 69)[0m
|
41927
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
41928
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
41929
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41930
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
41931
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41933
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41934
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41936
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41937
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41939
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41940
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41941
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41943
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41944
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41946
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41947
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41949
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41950
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41951
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41953
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41954
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41956
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41957
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41959
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41960
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41961
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41963
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41964
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41966
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41967
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41969
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
41970
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41971
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41973
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41974
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41976
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
41977
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41978
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41980
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (76, 77)[0m
|
41981
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (76, 77)
|
41982
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (38)[0m
|
41983
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (76, 77)
|
41984
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (38)[0m
|
41985
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (38)
|
41986
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
41987
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41988
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41990
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
41991
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
41993
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41994
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
41996
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
41997
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
41998
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42000
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42001
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42002
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42004
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42005
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42007
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42008
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42010
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42011
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42012
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42014
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42015
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42017
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42018
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42019
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42021
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42022
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42023
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42025
|
+
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
|
42026
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (39)[0m
|
42027
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42028
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)[0m
|
42029
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (39)
|
42030
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42031
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
|
42032
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (39)[0m
|
42033
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42034
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)[0m
|
42035
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (39)
|
42036
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42037
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (81, 82)
|
42038
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (39)[0m
|
42039
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42040
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42041
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42042
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42045
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42047
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42048
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42050
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42051
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42052
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42054
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42055
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42057
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42058
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42060
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42061
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42062
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42064
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42065
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42067
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42068
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42070
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42071
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42072
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42074
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42075
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42077
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42078
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42080
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42082
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42084
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (90)[0m
|
42085
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (41)
|
42086
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42087
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42088
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42090
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42091
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42093
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42094
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42096
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42097
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42098
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42100
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42101
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42103
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42104
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42105
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42107
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42108
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42110
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42111
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42113
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42114
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42115
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42117
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42118
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42120
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42121
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42123
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42124
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42125
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42128
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42130
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42131
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42132
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42134
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42135
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42136
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42138
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)[0m
|
42139
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
|
42140
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42141
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)
|
42142
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (43)[0m
|
42143
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42144
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)[0m
|
42145
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
|
42146
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42147
|
+
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)
|
42148
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (43)[0m
|
42149
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42150
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (97, 98)[0m
|
42151
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (43)
|
42152
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42153
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
42155
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42157
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42158
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42160
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42161
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42163
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42164
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42165
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42167
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42168
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42170
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42171
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42172
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42174
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42175
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42177
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42178
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42180
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42181
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42182
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42184
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42185
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42187
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42188
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
42190
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42191
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42192
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42194
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42195
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42197
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42198
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
42200
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42201
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42202
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42204
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42205
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42207
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42208
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42210
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42211
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42212
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42214
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42215
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42217
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42218
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42220
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)[0m
|
42221
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
42222
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42223
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)
|
42224
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
42225
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42226
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111)[0m
|
42227
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
42228
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42229
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (111, 112)
|
42230
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
42231
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42232
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42233
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42234
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42236
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42237
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42239
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42240
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42242
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42243
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42244
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42246
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42247
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42249
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42250
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42252
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
42253
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42254
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42256
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42257
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42258
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42260
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42261
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42263
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42264
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42266
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42268
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42270
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42271
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42273
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42274
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42275
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42277
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42278
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42280
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42281
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42283
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42284
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42285
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42287
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42288
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42290
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42291
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42293
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42294
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42295
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42297
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42298
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42300
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42301
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42302
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42304
|
+
[1m[36mMovie Load (0.2ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)[0m
|
42305
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
|
42306
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (47)[0m
|
42307
|
+
[1m[35mMovie Load (0.2ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (122, 123)
|
42308
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (47)[0m
|
42309
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (47)
|
42310
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42311
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42312
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42314
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42315
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42317
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42318
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42320
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42321
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42322
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42324
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42325
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42327
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42328
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42330
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42331
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42332
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42334
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (127)[0m
|
42335
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (48)
|
42336
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42337
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42338
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42340
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42341
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42342
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42344
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42345
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42347
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
|
42348
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42349
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42350
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42352
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42353
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42354
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42356
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42357
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42359
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."id" IN (NULL)
|
42360
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (73)[0m
|
42361
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (73)
|
42362
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (73, 74)[0m
|
42363
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42364
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42365
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42367
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42368
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42370
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42371
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42373
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42374
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42375
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42377
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42378
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42380
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42381
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42383
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (NULL)
|
42384
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
42385
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42386
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133)[0m
|
42387
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
42388
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42389
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133)
|
42390
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)[0m
|
42391
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42392
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (133, 134)[0m
|
42393
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (NULL)
|
42394
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42395
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42396
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42397
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42399
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42400
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42402
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
42403
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42405
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42406
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42407
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42410
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42412
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42413
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42415
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42416
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42417
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42419
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42420
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42422
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42423
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42424
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42426
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42427
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42430
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42432
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42433
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
42434
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42437
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42439
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42440
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42442
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42443
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42444
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42446
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42447
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42449
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42450
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42452
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42453
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42454
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42456
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42457
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42459
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42460
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42462
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42463
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42464
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42466
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42467
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42469
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42470
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42471
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42473
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42474
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42476
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42477
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42479
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42480
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42481
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42483
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (149)
|
42484
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (51)[0m
|
42485
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42486
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42487
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42489
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42490
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42492
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42493
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42495
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42497
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42499
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42500
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42502
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42503
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42504
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42506
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42507
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42508
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42510
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)[0m
|
42511
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
|
42512
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42513
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)
|
42514
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (52)[0m
|
42515
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42516
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)[0m
|
42517
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
|
42518
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42519
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)
|
42520
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (52)[0m
|
42521
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)
|
42522
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (151, 152)[0m
|
42523
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (52)
|
42524
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "vehicles".* FROM "vehicles" WHERE "vehicles"."type" IN ('Car') AND "vehicles"."id" IN (NULL)[0m
|
42525
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42526
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42527
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42529
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42530
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42532
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42533
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42535
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42536
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42537
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42539
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42540
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42542
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42543
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42545
|
+
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
42546
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42547
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42549
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42550
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42551
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42553
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42554
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42556
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42557
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42559
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42560
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42561
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42563
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42564
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42566
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42567
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42569
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42570
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42571
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42573
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42574
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42576
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42577
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42578
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42580
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (160, 161)[0m
|
42581
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (160, 161)
|
42582
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (54)[0m
|
42583
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (160, 161)
|
42584
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (54)[0m
|
42585
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (54)
|
42586
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42587
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42589
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42590
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42591
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42593
|
+
[1m[35m (0.0ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
42594
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42595
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42597
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42598
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42600
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42601
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42603
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42605
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42607
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42608
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42609
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42611
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42612
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42613
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42615
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42616
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42617
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42619
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42620
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "movies" WHERE "movies"."type" IN ('Documentary') AND "movies"."id" = ?[0m [["id", 164]]
|
42621
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42622
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (NULL)[0m
|
42623
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (NULL)
|
42624
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42625
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42627
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42628
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42629
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42631
|
+
[1m[35m (0.0ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
42632
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42633
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42635
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42636
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42638
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42639
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42640
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42642
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42643
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42644
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42646
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42647
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42648
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42650
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42651
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42652
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42654
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (57, 58, 56)[0m
|
42655
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42656
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42658
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42659
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42660
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42662
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
42663
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42664
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42666
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42667
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42669
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42670
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42672
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42673
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42675
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42676
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42678
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42679
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42681
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42682
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42683
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42685
|
+
[1m[35m (0.1ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
42686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42687
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42690
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42692
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42693
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42695
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42696
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42698
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42699
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42700
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42702
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42703
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42704
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42706
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (169, 168)[0m
|
42707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42708
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42710
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42712
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42714
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
42715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42716
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42718
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42719
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42721
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42722
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42723
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42725
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42726
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42728
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42729
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42730
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42732
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("rocks"."id") AS max_id FROM "rocks" [0m
|
42733
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42734
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "rocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42736
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42737
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42739
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42740
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42741
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42743
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42744
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42745
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42747
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42748
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42749
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42751
|
+
[1m[35m (0.1ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42752
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42753
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42755
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (63, 64, 62)
|
42756
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42757
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42759
|
+
[1m[35m (0.1ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42760
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42761
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42763
|
+
[1m[35m (0.0ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
42764
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42765
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42768
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42770
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42771
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42772
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42774
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42776
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42778
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42779
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42780
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42782
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
42783
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "movies" WHERE "movies"."id" = ? [["id", 173]]
|
42784
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42785
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42786
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 65]]
|
42787
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42788
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (NULL)[0m
|
42789
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (NULL)
|
42790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42791
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42793
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42794
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42795
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42797
|
+
[1m[35m (0.0ms)[0m SELECT MAX("rocks"."id") AS max_id FROM "rocks"
|
42798
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42799
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42801
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42802
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "vehicles" ("color", "created_at", "type", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42804
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42805
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42807
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42808
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42810
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42811
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42812
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42814
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42816
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42818
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (176, 175, 174)[0m
|
42819
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42820
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42821
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42824
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42826
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42827
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42828
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42830
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42831
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42832
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42834
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42835
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42836
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42838
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42839
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42840
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42842
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42843
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42844
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42846
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42847
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42848
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42850
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42852
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42854
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42855
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42856
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42858
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("users"."id") AS max_id FROM "users" [0m
|
42859
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42860
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42862
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42863
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42865
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42866
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42868
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42869
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42871
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42872
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42874
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42875
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42877
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42878
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42881
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42883
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42884
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42886
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42887
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42889
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42890
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42892
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42893
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42894
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42896
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42897
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42898
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42900
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42901
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42902
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42904
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42905
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42906
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42908
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42909
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42910
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42912
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42913
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42914
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42916
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42917
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42918
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42920
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42921
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42922
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42924
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42925
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42926
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42928
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("books"."id") AS max_id FROM "books" [0m
|
42929
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42930
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "books" ("author", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42932
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
42933
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" IN (113, 115, 114, 112, 116)
|
42934
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "movies" WHERE "movies"."id" IN (185)[0m
|
42935
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "books" WHERE "books"."id" IN (74, 73)
|
42936
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (111, 115, 114, 112, 116)[0m
|
42937
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42938
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "users" WHERE "users"."id" = ?[0m [["id", 111]]
|
42939
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42940
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (115, 114, 112, 116)[0m
|
42941
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42942
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42943
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42945
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42946
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42947
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42949
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42950
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42951
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42953
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42954
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42955
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42957
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42958
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42959
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42961
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
42962
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42963
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42965
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42966
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42968
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42969
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42971
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42972
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42974
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42975
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42977
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42978
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42980
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42981
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42983
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42984
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42986
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42987
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42989
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
42990
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
42992
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42993
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42995
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
42996
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
42997
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42999
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43000
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43001
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43003
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43004
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43005
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43007
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43008
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43009
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43011
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43012
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43013
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43015
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43016
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43017
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43019
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43020
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43021
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43023
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43024
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43025
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43027
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43028
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43029
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43031
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43032
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43033
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43035
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
43036
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" IN (119, 121, 120, 118, 122)[0m
|
43037
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
43038
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43039
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43041
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
43042
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43043
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43045
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
43046
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43047
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43049
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
43050
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43051
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43053
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
43054
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43055
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43057
|
+
[1m[35m (0.0ms)[0m SELECT MAX("users"."id") AS max_id FROM "users"
|
43058
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43059
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43061
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
43062
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
43064
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43065
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43067
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
43068
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
43070
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43071
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43073
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
43074
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
43076
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43077
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43079
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
43080
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
43082
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43083
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43085
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
43086
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "movies" ("created_at", "title", "type", "updated_at", "year") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
43088
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43089
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43091
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43092
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43093
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43095
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43096
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43097
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43099
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43100
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43101
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43103
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43104
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43105
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43107
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43108
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43109
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43111
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43112
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43113
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43115
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43116
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43117
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43119
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43120
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43121
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43123
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43124
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43125
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43127
|
+
[1m[35m (0.0ms)[0m SELECT MAX("books"."id") AS max_id FROM "books"
|
43128
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43129
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43131
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
43132
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)[0m
|
43133
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)
|
43134
|
+
[1m[36mMovie Load (0.1ms)[0m [1mSELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)[0m
|
43135
|
+
[1m[35mMovie Load (0.1ms)[0m SELECT "movies".* FROM "movies" WHERE "movies"."id" IN (207, 206, 205)
|
43136
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)[0m
|
43137
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)
|
43138
|
+
[1m[36mBook Load (0.1ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)[0m
|
43139
|
+
[1m[35mBook Load (0.1ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" IN (94, 93, 96, 95)
|
43140
|
+
[1m[36m (1.6ms)[0m [1mrollback transaction[0m
|