cucumber_factory 1.11.9 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -99,14 +99,26 @@ module Cucumber
99
99
  if value_type == "above"
100
100
  value = CucumberFactory::Switcher.find_last(association.klass) or raise "There is no last #{attribute}"
101
101
  else
102
- value = get_named_record(world, value) || world.Transform(value)
102
+ value = get_named_record(world, value) || transform_value(world, value)
103
103
  end
104
104
  else
105
- value = world.Transform(value)
105
+ value = transform_value(world, value)
106
106
  end
107
107
  value
108
108
  end
109
109
 
110
+ def transform_value(world, value)
111
+ # Transforms were a feature available in Cucumber 1 and 2.
112
+ # They have been kind-of replaced by ParameterTypes, which don't work with generic steps
113
+ # like CucumberFactory's.
114
+ # https://app.cucumber.pro/projects/cucumber-ruby/documents/branch/master/features/docs/writing_support_code/parameter_types.feature
115
+ if world.respond_to?(:Transform)
116
+ world.Transform(value)
117
+ else
118
+ value
119
+ end
120
+ end
121
+
110
122
  def attribute_name_from_prose(prose)
111
123
  prose.downcase.gsub(" ", "_").to_sym
112
124
  end
@@ -1,8 +1,14 @@
1
1
  # Runtime dependencies
2
2
  require 'active_support/all'
3
3
  require 'active_record'
4
+
4
5
  require 'cucumber'
5
- require 'cucumber/rb_support/rb_language'
6
+ if Cucumber::VERSION >= '3'
7
+ require 'cucumber/glue/registry_and_more'
8
+ else
9
+ require 'cucumber/rb_support/rb_language'
10
+ end
11
+
6
12
  require 'cucumber_priority'
7
13
 
8
14
  # Gem
@@ -1,3 +1,3 @@
1
1
  module CucumberFactory
2
- VERSION = '1.11.9'
2
+ VERSION = '1.12.0'
3
3
  end
@@ -7,6 +7,8 @@ describe 'steps provided by cucumber_factory' do
7
7
  prepare_cucumber_example
8
8
  end
9
9
 
10
+ TRANSFORMS_SUPPORTED = Cucumber::VERSION < '3'
11
+
10
12
  it "should create ActiveRecord models by calling #new and #save!" do
11
13
  movie = Movie.new
12
14
  Movie.should_receive(:new).with(no_args).and_return(movie)
@@ -97,16 +99,18 @@ describe 'steps provided by cucumber_factory' do
97
99
  movie.box_office_result.should == 32000000
98
100
  end
99
101
 
100
- it "should apply Cucumber transforms to attribute values" do
101
- movie = Movie.new
102
- Movie.stub(:new => movie)
103
- @main.instance_eval do
104
- Transform /^(value)$/ do |value|
105
- 'transformed value'
102
+ if TRANSFORMS_SUPPORTED
103
+ it "should apply Cucumber transforms to attribute values" do
104
+ movie = Movie.new
105
+ Movie.stub(:new => movie)
106
+ @main.instance_eval do
107
+ Transform /^(value)$/ do |value|
108
+ 'transformed value'
109
+ end
106
110
  end
111
+ invoke_cucumber_step('there is a movie with the title "value"')
112
+ movie.title.should == "transformed value"
107
113
  end
108
- invoke_cucumber_step('there is a movie with the title "value"')
109
- movie.title.should == "transformed value"
110
114
  end
111
115
 
112
116
  it "should create records with attributes containing spaces" do
@@ -159,16 +163,18 @@ describe 'steps provided by cucumber_factory' do
159
163
  before_sunset.reviewer.name.should == "John"
160
164
  end
161
165
 
162
- it "should fallback to using transforms when no named record is found" do
163
- user = User.create!(:name => 'Me')
164
- @main.instance_eval do
165
- Transform(/^(me)$/) do |value|
166
- user
166
+ if TRANSFORMS_SUPPORTED
167
+ it "should fallback to using transforms when no named record is found" do
168
+ user = User.create!(:name => 'Me')
169
+ @main.instance_eval do
170
+ Transform(/^(me)$/) do |value|
171
+ user
172
+ end
167
173
  end
174
+ invoke_cucumber_step('there is a movie with the title "Before Sunset" and the reviewer "me"')
175
+ before_sunset = Movie.find_by_title!("Before Sunset")
176
+ before_sunset.reviewer.should == user
168
177
  end
169
- invoke_cucumber_step('there is a movie with the title "Before Sunset" and the reviewer "me"')
170
- before_sunset = Movie.find_by_title!("Before Sunset")
171
- before_sunset.reviewer.should == user
172
178
  end
173
179
 
174
180
  it "should give created_at precedence over id when saying 'above' if the primary key is not numeric" do
@@ -0,0 +1,1473 @@
1
+ # Logfile created on 2015-11-02 12:09:42 +0100 SQL (0.2ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.0ms) select sqlite_version(*)
6
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
8
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+ SQL (0.0ms)  SELECT name
10
+ FROM sqlite_master
11
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
12
+ 
13
+ SQL (0.0ms) SELECT version FROM schema_migrations
14
+ Migrating to CreateMovies (1)
15
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
16
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
17
+ Migrating to CreateUsers (2)
18
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
19
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
20
+ Migrating to CreatePayments (3)
21
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
22
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
23
+ Migrating to CreateActors (4)
24
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
25
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
26
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
27
+ People::Actor Create (0.1ms) INSERT INTO actors VALUES(NULL)
28
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
29
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
30
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
31
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
32
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
33
+ Payment Create (0.1ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
34
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
35
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
36
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
37
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
38
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
39
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
40
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
41
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
42
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
43
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
44
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
45
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
46
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
47
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
48
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
49
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
50
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
51
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
52
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
53
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
54
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
55
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
56
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
57
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
58
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
59
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
60
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
61
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
62
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-01 12:09:43' WHERE "id" = 2
63
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
64
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
65
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
66
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
67
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
68
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
69
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
70
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
71
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
72
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
73
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
74
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
75
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
76
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
77
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
78
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
79
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
80
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
81
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-02 12:09:43')
82
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-02 12:09:43')
83
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-02 12:09:43')
84
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-02 12:09:43')
85
+ SQL (0.2ms)  SELECT name
86
+ FROM sqlite_master
87
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
88
+ 
89
+ SQL (0.0ms) select sqlite_version(*)
90
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
91
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
92
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
93
+ SQL (0.0ms)  SELECT name
94
+ FROM sqlite_master
95
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
96
+ 
97
+ SQL (0.0ms) SELECT version FROM schema_migrations
98
+ Migrating to CreateMovies (1)
99
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
100
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
101
+ Migrating to CreateUsers (2)
102
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
103
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
104
+ Migrating to CreatePayments (3)
105
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
106
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
107
+ Migrating to CreateActors (4)
108
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
109
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
110
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
111
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
112
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
113
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
114
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
115
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
116
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
117
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
118
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
119
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
120
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
121
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
122
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
123
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
124
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
125
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
126
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
127
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
128
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
129
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
130
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
131
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
132
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
133
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
134
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
135
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
136
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
137
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
138
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
139
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
140
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
141
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
142
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
143
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
144
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
145
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
146
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 15:53:12' WHERE "id" = 2
147
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
148
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
149
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
150
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
151
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
152
+ Movie Load (0.3ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
153
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
154
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
155
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
156
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
157
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
158
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
159
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
160
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
161
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
162
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
163
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
164
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
165
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 15:53:12')
166
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 15:53:12')
167
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 15:53:12')
168
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 15:53:12')
169
+ SQL (0.2ms)  SELECT name
170
+ FROM sqlite_master
171
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
172
+ 
173
+ SQL (0.1ms) select sqlite_version(*)
174
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
175
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
176
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
177
+ SQL (0.0ms)  SELECT name
178
+ FROM sqlite_master
179
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
180
+ 
181
+ SQL (0.0ms) SELECT version FROM schema_migrations
182
+ Migrating to CreateMovies (1)
183
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
184
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
185
+ Migrating to CreateUsers (2)
186
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
187
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
188
+ Migrating to CreatePayments (3)
189
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
190
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
191
+ Migrating to CreateActors (4)
192
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
193
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
194
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
195
+ People::Actor Create (0.1ms) INSERT INTO actors VALUES(NULL)
196
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
197
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
198
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
199
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
200
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
201
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
202
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
203
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
204
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
205
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
206
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
207
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
208
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
209
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
210
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
211
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
212
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
213
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
214
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
215
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
216
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
217
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
218
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
219
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
220
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
221
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
222
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
223
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
224
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
225
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
226
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
227
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
228
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
229
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
230
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:30:04' WHERE "id" = 2
231
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
232
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
233
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
234
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
235
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
236
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
237
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
238
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
239
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
240
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
241
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
242
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
243
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
244
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
245
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
246
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
247
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
248
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
249
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:30:04')
250
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:30:04')
251
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:30:04')
252
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:30:04')
253
+ SQL (0.2ms)  SELECT name
254
+ FROM sqlite_master
255
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
256
+ 
257
+ SQL (0.1ms) select sqlite_version(*)
258
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
259
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
260
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
261
+ SQL (0.0ms)  SELECT name
262
+ FROM sqlite_master
263
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
264
+ 
265
+ SQL (0.0ms) SELECT version FROM schema_migrations
266
+ Migrating to CreateMovies (1)
267
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
268
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
269
+ Migrating to CreateUsers (2)
270
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
271
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
272
+ Migrating to CreatePayments (3)
273
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
274
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
275
+ Migrating to CreateActors (4)
276
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
277
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
278
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
279
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
280
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
281
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
282
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
283
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
284
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
285
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
286
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
287
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
288
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
289
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
290
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
291
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
292
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
293
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
294
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
295
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
296
+ Movie Load (0.3ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
297
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
298
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
299
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
300
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
301
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
302
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
303
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
304
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
305
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
306
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
307
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
308
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
309
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
310
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
311
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
312
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
313
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
314
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:31:26' WHERE "id" = 2
315
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
316
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
317
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
318
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
319
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
320
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
321
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
322
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
323
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
324
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
325
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
326
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
327
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
328
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
329
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
330
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
331
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
332
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
333
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:31:26')
334
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:31:26')
335
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:31:26')
336
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:31:26')
337
+ SQL (0.2ms)  SELECT name
338
+ FROM sqlite_master
339
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
340
+ 
341
+ SQL (0.1ms) select sqlite_version(*)
342
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
343
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
344
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
345
+ SQL (0.0ms)  SELECT name
346
+ FROM sqlite_master
347
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
348
+ 
349
+ SQL (0.0ms) SELECT version FROM schema_migrations
350
+ Migrating to CreateMovies (1)
351
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
352
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
353
+ Migrating to CreateUsers (2)
354
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
355
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
356
+ Migrating to CreatePayments (3)
357
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
358
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
359
+ Migrating to CreateActors (4)
360
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
361
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
362
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
363
+ People::Actor Create (0.1ms) INSERT INTO actors VALUES(NULL)
364
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
365
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
366
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
367
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
368
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
369
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
370
+ Payment Load (0.2ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
371
+ Movie Create (0.2ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
372
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
373
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
374
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
375
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
376
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
377
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
378
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
379
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
380
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
381
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
382
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
383
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
384
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
385
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
386
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
387
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
388
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
389
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
390
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
391
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
392
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
393
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
394
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
395
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
396
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
397
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
398
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:31:48' WHERE "id" = 2
399
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
400
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
401
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
402
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
403
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
404
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
405
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
406
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
407
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
408
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
409
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
410
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
411
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
412
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
413
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
414
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
415
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
416
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
417
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:31:48')
418
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:31:48')
419
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:31:48')
420
+ User Create (0.2ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:31:48')
421
+ SQL (0.2ms)  SELECT name
422
+ FROM sqlite_master
423
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
424
+ 
425
+ SQL (0.1ms) select sqlite_version(*)
426
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
427
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
428
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
429
+ SQL (0.0ms)  SELECT name
430
+ FROM sqlite_master
431
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
432
+ 
433
+ SQL (0.0ms) SELECT version FROM schema_migrations
434
+ Migrating to CreateMovies (1)
435
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
436
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
437
+ Migrating to CreateUsers (2)
438
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
439
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
440
+ Migrating to CreatePayments (3)
441
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
442
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
443
+ Migrating to CreateActors (4)
444
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
445
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
446
+ SQL (0.2ms)  SELECT name
447
+ FROM sqlite_master
448
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
449
+ 
450
+ SQL (0.1ms)  SELECT name
451
+ FROM sqlite_master
452
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
453
+ 
454
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
455
+ People::Actor Create (0.1ms) INSERT INTO actors VALUES(NULL)
456
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
457
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
458
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
459
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
460
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
461
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
462
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
463
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
464
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
465
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
466
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
467
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
468
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
469
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
470
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
471
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
472
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
473
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
474
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
475
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
476
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
477
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
478
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
479
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
480
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
481
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
482
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
483
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
484
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
485
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
486
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
487
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
488
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
489
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
490
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:32:32' WHERE "id" = 2
491
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
492
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
493
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
494
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
495
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
496
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
497
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
498
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
499
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
500
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
501
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
502
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
503
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
504
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
505
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
506
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
507
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
508
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
509
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:32:32')
510
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:32:32')
511
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:32:32')
512
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:32:32')
513
+ SQL (0.2ms)  SELECT name
514
+ FROM sqlite_master
515
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
516
+ 
517
+ SQL (0.1ms) select sqlite_version(*)
518
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
519
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
520
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
521
+ SQL (0.0ms)  SELECT name
522
+ FROM sqlite_master
523
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
524
+ 
525
+ SQL (0.0ms) SELECT version FROM schema_migrations
526
+ Migrating to CreateMovies (1)
527
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
528
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
529
+ Migrating to CreateUsers (2)
530
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
531
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
532
+ Migrating to CreatePayments (3)
533
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
534
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
535
+ Migrating to CreateActors (4)
536
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
537
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
538
+ SQL (0.1ms)  SELECT name
539
+ FROM sqlite_master
540
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
541
+ 
542
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:51')
543
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
544
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
545
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
546
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
547
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
548
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
549
+ Payment Create (0.1ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
550
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
551
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
552
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
553
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
554
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
555
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
556
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
557
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
558
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
559
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
560
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
561
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
562
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
563
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
564
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
565
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
566
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
567
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
568
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
569
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
570
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
571
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
572
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
573
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
574
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
575
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
576
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
577
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
578
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:32:52' WHERE "id" = 2
579
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
580
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
581
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
582
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
583
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
584
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
585
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
586
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
587
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
588
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
589
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
590
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
591
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
592
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
593
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
594
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
595
+ User Create (0.2ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
596
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
597
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:32:52')
598
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:32:52')
599
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:32:52')
600
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:32:52')
601
+ SQL (0.1ms)  SELECT name
602
+ FROM sqlite_master
603
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
604
+ 
605
+ SQL (0.1ms)  SELECT name
606
+ FROM sqlite_master
607
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
608
+ 
609
+ SQL (0.2ms)  SELECT name
610
+ FROM sqlite_master
611
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
612
+ 
613
+ SQL (0.1ms) select sqlite_version(*)
614
+ SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
615
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
616
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
617
+ SQL (0.0ms)  SELECT name
618
+ FROM sqlite_master
619
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
620
+ 
621
+ SQL (0.0ms) SELECT version FROM schema_migrations
622
+ Migrating to CreateMovies (1)
623
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
624
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
625
+ Migrating to CreateUsers (2)
626
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
627
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
628
+ Migrating to CreatePayments (3)
629
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
630
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
631
+ Migrating to CreateActors (4)
632
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
633
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
634
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
635
+ People::Actor Create (0.1ms) INSERT INTO actors VALUES(NULL)
636
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
637
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
638
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
639
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
640
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
641
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
642
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
643
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
644
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
645
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
646
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
647
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
648
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
649
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
650
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
651
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
652
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
653
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
654
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
655
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
656
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
657
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
658
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
659
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
660
+ Movie Create (0.2ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
661
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
662
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
663
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
664
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
665
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
666
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
667
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
668
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
669
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
670
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:33:08' WHERE "id" = 2
671
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
672
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
673
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
674
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
675
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
676
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
677
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
678
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
679
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
680
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
681
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
682
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
683
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
684
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
685
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
686
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
687
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
688
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
689
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:33:08')
690
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:33:08')
691
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:33:08')
692
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:33:08')
693
+ SQL (0.2ms)  SELECT name
694
+ FROM sqlite_master
695
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
696
+ 
697
+ SQL (0.1ms) select sqlite_version(*)
698
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
699
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
700
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
701
+ SQL (0.0ms)  SELECT name
702
+ FROM sqlite_master
703
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
704
+ 
705
+ SQL (0.0ms) SELECT version FROM schema_migrations
706
+ Migrating to CreateMovies (1)
707
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
708
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
709
+ Migrating to CreateUsers (2)
710
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
711
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
712
+ Migrating to CreatePayments (3)
713
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
714
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
715
+ Migrating to CreateActors (4)
716
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
717
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
718
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
719
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
720
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
721
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
722
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
723
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
724
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
725
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
726
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
727
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
728
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
729
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
730
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
731
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
732
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
733
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
734
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
735
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
736
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
737
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
738
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
739
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
740
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
741
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
742
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
743
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
744
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
745
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
746
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
747
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
748
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
749
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
750
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
751
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
752
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
753
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
754
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:33:34' WHERE "id" = 2
755
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
756
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
757
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
758
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
759
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
760
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
761
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
762
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
763
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
764
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
765
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
766
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
767
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
768
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
769
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
770
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
771
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
772
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
773
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:33:34')
774
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:33:34')
775
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:33:34')
776
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:33:34')
777
+ SQL (0.2ms)  SELECT name
778
+ FROM sqlite_master
779
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
780
+ 
781
+ SQL (0.1ms) select sqlite_version(*)
782
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
783
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
784
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
785
+ SQL (0.0ms)  SELECT name
786
+ FROM sqlite_master
787
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
788
+ 
789
+ SQL (0.0ms) SELECT version FROM schema_migrations
790
+ Migrating to CreateMovies (1)
791
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
792
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
793
+ Migrating to CreateUsers (2)
794
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
795
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
796
+ Migrating to CreatePayments (3)
797
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
798
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
799
+ Migrating to CreateActors (4)
800
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
801
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
802
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
803
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
804
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
805
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
806
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
807
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
808
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
809
+ Payment Create (0.1ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
810
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
811
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
812
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
813
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
814
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
815
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
816
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
817
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
818
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
819
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
820
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
821
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
822
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
823
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
824
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
825
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
826
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
827
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
828
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
829
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
830
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
831
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
832
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
833
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
834
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
835
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
836
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
837
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
838
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:33:56' WHERE "id" = 2
839
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
840
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
841
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
842
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
843
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
844
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
845
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
846
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
847
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
848
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
849
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
850
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
851
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
852
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
853
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
854
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
855
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
856
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
857
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:33:56')
858
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:33:56')
859
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:33:56')
860
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:33:56')
861
+ SQL (0.2ms)  SELECT name
862
+ FROM sqlite_master
863
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
864
+ 
865
+ SQL (0.1ms) select sqlite_version(*)
866
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
867
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
868
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
869
+ SQL (0.0ms)  SELECT name
870
+ FROM sqlite_master
871
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
872
+ 
873
+ SQL (0.0ms) SELECT version FROM schema_migrations
874
+ Migrating to CreateMovies (1)
875
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
876
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
877
+ Migrating to CreateUsers (2)
878
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
879
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
880
+ Migrating to CreatePayments (3)
881
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
882
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
883
+ Migrating to CreateActors (4)
884
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
885
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
886
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
887
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
888
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
889
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
890
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
891
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
892
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
893
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
894
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
895
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
896
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
897
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
898
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
899
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
900
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
901
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
902
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
903
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
904
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
905
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
906
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
907
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
908
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
909
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
910
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
911
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
912
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
913
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
914
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
915
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
916
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
917
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
918
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
919
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
920
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
921
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
922
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:35:29' WHERE "id" = 2
923
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
924
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
925
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
926
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
927
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
928
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
929
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
930
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
931
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
932
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
933
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
934
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
935
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
936
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
937
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
938
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
939
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
940
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
941
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:35:29')
942
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:35:29')
943
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:35:29')
944
+ User Create (0.2ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:35:29')
945
+ SQL (0.2ms)  SELECT name
946
+ FROM sqlite_master
947
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
948
+ 
949
+ SQL (0.1ms) select sqlite_version(*)
950
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
951
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
952
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
953
+ SQL (0.0ms)  SELECT name
954
+ FROM sqlite_master
955
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
956
+ 
957
+ SQL (0.0ms) SELECT version FROM schema_migrations
958
+ Migrating to CreateMovies (1)
959
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
960
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
961
+ Migrating to CreateUsers (2)
962
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
963
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
964
+ Migrating to CreatePayments (3)
965
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
966
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
967
+ Migrating to CreateActors (4)
968
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
969
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
970
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
971
+ People::Actor Create (0.1ms) INSERT INTO actors VALUES(NULL)
972
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
973
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
974
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
975
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
976
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
977
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
978
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
979
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
980
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
981
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
982
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
983
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
984
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
985
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
986
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
987
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
988
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
989
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
990
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
991
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
992
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
993
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
994
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
995
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
996
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
997
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
998
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
999
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
1000
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1001
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1002
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
1003
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1004
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1005
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
1006
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:37:22' WHERE "id" = 2
1007
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1008
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1009
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1010
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1011
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
1012
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1013
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1014
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1015
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1016
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1017
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
1018
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
1019
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1020
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
1021
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1022
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1023
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1024
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1025
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:37:22')
1026
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:37:22')
1027
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:37:22')
1028
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:37:22')
1029
+ SQL (0.2ms)  SELECT name
1030
+ FROM sqlite_master
1031
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1032
+ 
1033
+ SQL (0.1ms) select sqlite_version(*)
1034
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1035
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1036
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1037
+ SQL (0.0ms)  SELECT name
1038
+ FROM sqlite_master
1039
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1040
+ 
1041
+ SQL (0.0ms) SELECT version FROM schema_migrations
1042
+ Migrating to CreateMovies (1)
1043
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
1044
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
1045
+ Migrating to CreateUsers (2)
1046
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
1047
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
1048
+ Migrating to CreatePayments (3)
1049
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
1050
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
1051
+ Migrating to CreateActors (4)
1052
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
1053
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
1054
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1055
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
1056
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
1057
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
1058
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
1059
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
1060
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1061
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
1062
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
1063
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1064
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1065
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1066
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1067
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1068
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1069
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1070
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1071
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1072
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1073
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1074
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1075
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1076
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1077
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1078
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1079
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1080
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1081
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1082
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1083
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
1084
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1085
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1086
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
1087
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1088
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1089
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
1090
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:38:41' WHERE "id" = 2
1091
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1092
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1093
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1094
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1095
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
1096
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1097
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1098
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1099
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1100
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1101
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
1102
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
1103
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1104
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
1105
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1106
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1107
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1108
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1109
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:38:41')
1110
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:38:41')
1111
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:38:41')
1112
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:38:41')
1113
+ SQL (0.2ms)  SELECT name
1114
+ FROM sqlite_master
1115
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1116
+ 
1117
+ SQL (0.1ms) select sqlite_version(*)
1118
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1119
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1120
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1121
+ SQL (0.0ms)  SELECT name
1122
+ FROM sqlite_master
1123
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1124
+ 
1125
+ SQL (0.0ms) SELECT version FROM schema_migrations
1126
+ Migrating to CreateMovies (1)
1127
+ SQL (0.2ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
1128
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
1129
+ Migrating to CreateUsers (2)
1130
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
1131
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
1132
+ Migrating to CreatePayments (3)
1133
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
1134
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
1135
+ Migrating to CreateActors (4)
1136
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
1137
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
1138
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1139
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
1140
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
1141
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
1142
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
1143
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
1144
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1145
+ Payment Create (0.0ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
1146
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
1147
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1148
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1149
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1150
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1151
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1152
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1153
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1154
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1155
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1156
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1157
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1158
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1159
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1160
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1161
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1162
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1163
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1164
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1165
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1166
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1167
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
1168
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1169
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1170
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
1171
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1172
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1173
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
1174
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:40:10' WHERE "id" = 2
1175
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1176
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1177
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1178
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1179
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
1180
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1181
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1182
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1183
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1184
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1185
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
1186
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
1187
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1188
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
1189
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1190
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1191
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:10')
1192
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:11')
1193
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:40:11')
1194
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:40:11')
1195
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:40:11')
1196
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:40:11')
1197
+ SQL (0.2ms)  SELECT name
1198
+ FROM sqlite_master
1199
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1200
+ 
1201
+ SQL (0.1ms) select sqlite_version(*)
1202
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1203
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1204
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1205
+ SQL (0.0ms)  SELECT name
1206
+ FROM sqlite_master
1207
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1208
+ 
1209
+ SQL (0.0ms) SELECT version FROM schema_migrations
1210
+ Migrating to CreateMovies (1)
1211
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
1212
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
1213
+ Migrating to CreateUsers (2)
1214
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
1215
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
1216
+ Migrating to CreatePayments (3)
1217
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
1218
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
1219
+ Migrating to CreateActors (4)
1220
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
1221
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
1222
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1223
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
1224
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
1225
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
1226
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
1227
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
1228
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1229
+ Payment Create (0.1ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
1230
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
1231
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1232
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1233
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1234
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1235
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1236
+ Movie Load (16.5ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1237
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1238
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1239
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1240
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1241
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1242
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1243
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1244
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1245
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1246
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1247
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1248
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1249
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1250
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1251
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
1252
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1253
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1254
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
1255
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1256
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1257
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
1258
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:40:26' WHERE "id" = 2
1259
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1260
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1261
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1262
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1263
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
1264
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1265
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1266
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1267
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1268
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1269
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
1270
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
1271
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1272
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
1273
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1274
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1275
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1276
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1277
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:40:26')
1278
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:40:26')
1279
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:40:26')
1280
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:40:26')
1281
+ SQL (0.2ms)  SELECT name
1282
+ FROM sqlite_master
1283
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1284
+ 
1285
+ SQL (0.1ms) select sqlite_version(*)
1286
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1287
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1288
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1289
+ SQL (0.0ms)  SELECT name
1290
+ FROM sqlite_master
1291
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1292
+ 
1293
+ SQL (0.0ms) SELECT version FROM schema_migrations
1294
+ Migrating to CreateMovies (1)
1295
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
1296
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
1297
+ Migrating to CreateUsers (2)
1298
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
1299
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
1300
+ Migrating to CreatePayments (3)
1301
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
1302
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
1303
+ Migrating to CreateActors (4)
1304
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
1305
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
1306
+ User Create (0.3ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1307
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
1308
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
1309
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
1310
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
1311
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
1312
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1313
+ Payment Create (0.1ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
1314
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
1315
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1316
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1317
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1318
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1319
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1320
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1321
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1322
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1323
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1324
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1325
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1326
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1327
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1328
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1329
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1330
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1331
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1332
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1333
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1334
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1335
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
1336
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1337
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1338
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
1339
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1340
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1341
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
1342
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:40:46' WHERE "id" = 2
1343
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1344
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1345
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1346
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1347
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
1348
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1349
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1350
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1351
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1352
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1353
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
1354
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
1355
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1356
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
1357
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1358
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1359
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1360
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1361
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:40:46')
1362
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:40:46')
1363
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:40:46')
1364
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:40:46')
1365
+ SQL (0.2ms)  SELECT name
1366
+ FROM sqlite_master
1367
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1368
+ 
1369
+ SQL (0.0ms) select sqlite_version(*)
1370
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1371
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1372
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1373
+ SQL (0.0ms)  SELECT name
1374
+ FROM sqlite_master
1375
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1376
+ 
1377
+ SQL (0.0ms) SELECT version FROM schema_migrations
1378
+ Migrating to CreateMovies (1)
1379
+ SQL (0.2ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
1380
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
1381
+ Migrating to CreateUsers (2)
1382
+ SQL (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
1383
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
1384
+ Migrating to CreatePayments (3)
1385
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
1386
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('3')
1387
+ Migrating to CreateActors (4)
1388
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
1389
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
1390
+ SQL (0.3ms)  SELECT name
1391
+ FROM sqlite_master
1392
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1393
+ 
1394
+ SQL (0.1ms) select sqlite_version(*)
1395
+ SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1396
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1397
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1398
+ SQL (0.0ms)  SELECT name
1399
+ FROM sqlite_master
1400
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1401
+ 
1402
+ SQL (0.0ms) SELECT version FROM schema_migrations
1403
+ Migrating to CreateMovies (1)
1404
+ SQL (0.1ms) CREATE TABLE "movies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "year" integer, "prequel_id" integer, "reviewer_id" integer, "box_office_result" integer) 
1405
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('1')
1406
+ Migrating to CreateUsers (2)
1407
+ SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "deleted" boolean, "locked" boolean, "subscribed" boolean, "scared" boolean, "scared_by_spiders" boolean, "created_at" datetime) 
1408
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('2')
1409
+ Migrating to CreatePayments (3)
1410
+ SQL (0.1ms) CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "comment" text, "amount" integer) 
1411
+ SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3')
1412
+ Migrating to CreateActors (4)
1413
+ SQL (0.1ms) CREATE TABLE "actors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
1414
+ SQL (0.0ms) INSERT INTO schema_migrations (version) VALUES ('4')
1415
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1416
+ People::Actor Create (0.0ms) INSERT INTO actors VALUES(NULL)
1417
+ Movie Create (0.1ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, NULL)
1418
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Sunshine', 2007, NULL, NULL, 32000000)
1419
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('transformed value', NULL, NULL, NULL, NULL)
1420
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES(NULL, NULL, NULL, NULL, 99999999)
1421
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Susanne', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1422
+ Payment Create (0.1ms) INSERT INTO "payments" ("comment", "amount") VALUES('Thanks for lending', 120)
1423
+ Payment Load (0.1ms) SELECT * FROM "payments" ORDER BY payments.id DESC LIMIT 1
1424
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1425
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1426
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1427
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1428
+ Movie Load (16.0ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1429
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1430
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1431
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1432
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1433
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1434
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 1, NULL, NULL)
1435
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1436
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunrise') LIMIT 1
1437
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 1) 
1438
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1439
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1440
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1441
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1442
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1443
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1444
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 2, NULL)
1445
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1446
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1447
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 2) 
1448
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1449
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'John', NULL, NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1450
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."name" = 'John') LIMIT 1
1451
+ User Update (0.0ms) UPDATE "users" SET "created_at" = '2015-11-25 19:43:22' WHERE "id" = 2
1452
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Limitless', NULL, NULL, NULL, NULL)
1453
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunrise', NULL, NULL, NULL, NULL)
1454
+ User Load (0.3ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1455
+ Movie Load (0.2ms) SELECT * FROM "movies" ORDER BY id DESC LIMIT 1
1456
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, 2, 1, NULL)
1457
+ Movie Load (0.1ms) SELECT * FROM "movies" WHERE ("movies"."title" = 'Before Sunset') LIMIT 1
1458
+ Movie Load (0.2ms) SELECT * FROM "movies" WHERE ("movies"."id" = 2) 
1459
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1460
+ User Load (0.1ms) SELECT * FROM "users" ORDER BY created_at DESC, id DESC LIMIT 1
1461
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1462
+ User Load (0.2ms) SELECT * FROM "users" ORDER BY users.id DESC LIMIT 1
1463
+ User Update (0.0ms) UPDATE "users" SET "deleted" = 'f' WHERE "id" = 1
1464
+ User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
1465
+ Movie Create (0.0ms) INSERT INTO "movies" ("title", "year", "prequel_id", "reviewer_id", "box_office_result") VALUES('Before Sunset', NULL, NULL, 1, NULL)
1466
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1467
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1468
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, 'Jane', 't', NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1469
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1470
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', NULL, NULL, NULL, NULL, '2015-11-26 19:43:22')
1471
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 'f', 't', 't', NULL, NULL, '2015-11-26 19:43:22')
1472
+ User Create (0.1ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 'f', 't', '2015-11-26 19:43:22')
1473
+ User Create (0.0ms) INSERT INTO "users" ("email", "name", "deleted", "locked", "subscribed", "scared", "scared_by_spiders", "created_at") VALUES(NULL, NULL, 't', 't', NULL, 't', 't', '2015-11-26 19:43:22')