pillowfort 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +0 -1
  3. data/app/models/pillowfort/concerns/model_authentication.rb +7 -3
  4. data/lib/pillowfort/version.rb +1 -1
  5. data/spec/dummy/README.rdoc +28 -0
  6. data/spec/dummy/Rakefile +6 -0
  7. data/spec/dummy/app/assets/javascripts/accounts.js +2 -0
  8. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  9. data/spec/dummy/app/assets/stylesheets/accounts.css +4 -0
  10. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  11. data/spec/dummy/app/controllers/accounts_controller.rb +13 -0
  12. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  13. data/spec/dummy/app/helpers/accounts_helper.rb +2 -0
  14. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  15. data/spec/dummy/app/models/account.rb +3 -0
  16. data/spec/dummy/app/views/accounts/index.html.erb +2 -0
  17. data/spec/dummy/app/views/accounts/show.html.erb +2 -0
  18. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/spec/dummy/bin/bundle +3 -0
  20. data/spec/dummy/bin/rails +4 -0
  21. data/spec/dummy/bin/rake +4 -0
  22. data/spec/dummy/bin/setup +29 -0
  23. data/spec/dummy/config.ru +4 -0
  24. data/spec/dummy/config/application.rb +31 -0
  25. data/spec/dummy/config/boot.rb +5 -0
  26. data/spec/dummy/config/database.yml +17 -0
  27. data/spec/dummy/config/environment.rb +5 -0
  28. data/spec/dummy/config/environments/test.rb +42 -0
  29. data/spec/dummy/config/initializers/assets.rb +11 -0
  30. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  32. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  33. data/spec/dummy/config/initializers/inflections.rb +16 -0
  34. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  35. data/spec/dummy/config/initializers/session_store.rb +3 -0
  36. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/spec/dummy/config/locales/en.yml +23 -0
  38. data/spec/dummy/config/routes.rb +60 -0
  39. data/spec/dummy/config/secrets.yml +14 -0
  40. data/spec/dummy/db/migrate/20150127045508_create_accounts.rb +12 -0
  41. data/spec/dummy/db/schema.rb +25 -0
  42. data/spec/dummy/db/test.sqlite3 +0 -0
  43. data/spec/dummy/log/development.log +0 -0
  44. data/spec/dummy/log/test.log +2087 -0
  45. data/spec/dummy/public/404.html +67 -0
  46. data/spec/dummy/public/422.html +67 -0
  47. data/spec/dummy/public/500.html +66 -0
  48. data/spec/dummy/public/favicon.ico +0 -0
  49. data/spec/dummy/spec/controllers/accounts_controller_spec.rb +52 -0
  50. data/spec/dummy/spec/factories/accounts.rb +10 -0
  51. data/spec/dummy/spec/models/account_spec.rb +276 -0
  52. data/spec/dummy/spec/rails_helper.rb +52 -0
  53. data/spec/dummy/spec/spec_helper.rb +85 -0
  54. data/spec/dummy/spec/support/helpers/authentication_helper.rb +15 -0
  55. metadata +103 -3
@@ -0,0 +1,60 @@
1
+ Rails.application.routes.draw do
2
+ get 'accounts/index'
3
+
4
+ get 'accounts/show'
5
+
6
+ # The priority is based upon order of creation: first created -> highest priority.
7
+ # See how all your routes lay out with "rake routes".
8
+
9
+ # You can have the root of your site routed with "root"
10
+ # root 'welcome#index'
11
+
12
+ # Example of regular route:
13
+ # get 'products/:id' => 'catalog#view'
14
+
15
+ # Example of named route that can be invoked with purchase_url(id: product.id)
16
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
17
+
18
+ # Example resource route (maps HTTP verbs to controller actions automatically):
19
+ # resources :products
20
+
21
+ # Example resource route with options:
22
+ # resources :products do
23
+ # member do
24
+ # get 'short'
25
+ # post 'toggle'
26
+ # end
27
+ #
28
+ # collection do
29
+ # get 'sold'
30
+ # end
31
+ # end
32
+
33
+ # Example resource route with sub-resources:
34
+ # resources :products do
35
+ # resources :comments, :sales
36
+ # resource :seller
37
+ # end
38
+
39
+ # Example resource route with more complex sub-resources:
40
+ # resources :products do
41
+ # resources :comments
42
+ # resources :sales do
43
+ # get 'recent', on: :collection
44
+ # end
45
+ # end
46
+
47
+ # Example resource route with concerns:
48
+ # concern :toggleable do
49
+ # post 'toggle'
50
+ # end
51
+ # resources :posts, concerns: :toggleable
52
+ # resources :photos, concerns: :toggleable
53
+
54
+ # Example resource route within a namespace:
55
+ # namespace :admin do
56
+ # # Directs /admin/products/* to Admin::ProductsController
57
+ # # (app/controllers/admin/products_controller.rb)
58
+ # resources :products
59
+ # end
60
+ end
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ test:
14
+ secret_key_base: a0f1d3fd6b4dd881bf33ba3ab5984676168123f5dd60e21358d94c34a9eeb46b02e5c63b288fdb98f4372ab1163f4b55de63620541750310025116f8d0b16efa
@@ -0,0 +1,12 @@
1
+ class CreateAccounts < ActiveRecord::Migration
2
+ def change
3
+ create_table :accounts do |t|
4
+ t.string :email
5
+ t.string :password_digest
6
+ t.string :auth_token
7
+ t.datetime :auth_token_expires_at
8
+
9
+ t.timestamps null: false
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,25 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150127045508) do
15
+
16
+ create_table "accounts", force: :cascade do |t|
17
+ t.string "email"
18
+ t.string "password_digest"
19
+ t.string "auth_token"
20
+ t.datetime "auth_token_expires_at"
21
+ t.datetime "created_at", null: false
22
+ t.datetime "updated_at", null: false
23
+ end
24
+
25
+ end
File without changes
@@ -0,0 +1,2087 @@
1
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
+  (0.1ms) begin transaction
3
+  (0.1ms) SAVEPOINT active_record_1
4
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
5
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "w3jPqrWd3Hyun7gudkWgSpFPPsFRhCRv44WSsrvUpdQr"]]
6
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$V1mcFjfB6zdUo69RoCI0e.Kf4vmCohcdrmjd9MRcIPDlto9qsx4vq"], ["auth_token", "w3jPqrWd3Hyun7gudkWgSpFPPsFRhCRv44WSsrvUpdQr"], ["auth_token_expires_at", "2015-01-30 04:48:07.609404"], ["created_at", "2015-01-29 04:48:07.609737"], ["updated_at", "2015-01-29 04:48:07.609737"]]
7
+  (0.0ms) RELEASE SAVEPOINT active_record_1
8
+ Processing by AccountsController#index as HTML
9
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
10
+  (0.6ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+  (0.1ms) SAVEPOINT active_record_1
13
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
14
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "QCNnX2w6GXgZ3XBksyksUNTR5nwS8sYL5HsMUpTM5DEr"]]
15
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$D0iGHedtxg7yJ4hIbKMNpOfKX5Sq2R0bocEXuQy7qx4R4JJ9V9nIW"], ["auth_token", "QCNnX2w6GXgZ3XBksyksUNTR5nwS8sYL5HsMUpTM5DEr"], ["auth_token_expires_at", "2015-01-30 04:48:07.618708"], ["created_at", "2015-01-29 04:48:07.618902"], ["updated_at", "2015-01-29 04:48:07.618902"]]
16
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17
+ Processing by AccountsController#show as HTML
18
+ Parameters: {"id"=>"1"}
19
+  (0.0ms) SAVEPOINT active_record_1
20
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foo.bar.2@baz.org"]]
21
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.623052' WHERE "accounts"."id" = ? [["id", 1]]
22
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23
+ Completed 200 OK in 3ms (ActiveRecord: 0.5ms)
24
+  (0.5ms) rollback transaction
25
+  (0.0ms) begin transaction
26
+ Processing by AccountsController#index as HTML
27
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
28
+  (0.0ms) rollback transaction
29
+  (0.0ms) begin transaction
30
+ Processing by AccountsController#show as HTML
31
+ Parameters: {"id"=>"1"}
32
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
33
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
34
+  (0.0ms) rollback transaction
35
+  (0.0ms) begin transaction
36
+  (0.0ms) rollback transaction
37
+  (0.0ms) begin transaction
38
+  (0.0ms) SAVEPOINT active_record_1
39
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
40
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "yAqAGNyXDNcLQYkYs3BMuxpjqdJ6hDw9dNSLsBUZhWMr"]]
41
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$15Cqvq8lI6HV/aLJMer7SuLpLf11oDj0iz2KZRsB6BI/Dlg6rzAlK"], ["auth_token", "yAqAGNyXDNcLQYkYs3BMuxpjqdJ6hDw9dNSLsBUZhWMr"], ["auth_token_expires_at", "2015-01-30 04:48:07.634380"], ["created_at", "2015-01-29 04:48:07.634606"], ["updated_at", "2015-01-29 04:48:07.634606"]]
42
+  (0.0ms) RELEASE SAVEPOINT active_record_1
43
+ Processing by AccountsController#show as HTML
44
+ Parameters: {"id"=>"1"}
45
+  (0.0ms) SAVEPOINT active_record_1
46
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foo.bar.3@baz.org"]]
47
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.637229' WHERE "accounts"."id" = ? [["id", 1]]
48
+  (0.0ms) RELEASE SAVEPOINT active_record_1
49
+ Completed 200 OK in 1ms (ActiveRecord: 0.4ms)
50
+  (1.0ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+  (0.2ms) SAVEPOINT active_record_1
53
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
54
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
55
+  (0.1ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+  (0.0ms) SAVEPOINT active_record_1
58
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
59
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Ncc9q583m1ji5nFEpkbRLu1JnkrKkq87sfsqxQkMu2or"]]
60
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$1f7MAd/F8w5af4jHhK806.7TjSYq/wzXqWkJmSvu9N3HQLmS4oYTC"], ["auth_token", "Ncc9q583m1ji5nFEpkbRLu1JnkrKkq87sfsqxQkMu2or"], ["auth_token_expires_at", "2015-01-30 04:48:07.661770"], ["created_at", "2015-01-29 04:48:07.661976"], ["updated_at", "2015-01-29 04:48:07.661976"]]
61
+  (0.0ms) RELEASE SAVEPOINT active_record_1
62
+  (0.0ms) SAVEPOINT active_record_1
63
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
64
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
65
+  (0.5ms) rollback transaction
66
+  (0.0ms) begin transaction
67
+  (0.0ms) SAVEPOINT active_record_1
68
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
69
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+  (0.0ms) SAVEPOINT active_record_1
73
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
74
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
75
+  (0.0ms) rollback transaction
76
+  (0.0ms) begin transaction
77
+  (0.0ms) SAVEPOINT active_record_1
78
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
79
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
80
+  (0.0ms) rollback transaction
81
+  (0.0ms) begin transaction
82
+  (0.0ms) SAVEPOINT active_record_1
83
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
84
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "SNHfM3hCAa4QXyYgLUqpJz8M5CmKHKezsFfnG6JDTacr"]]
85
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.7@baz.org"], ["password_digest", "$2a$04$B.4JCt0YmN3PV6pOMfy9h.I8LXjP0EcnEpCAMAPViwmPlaZOo3zQm"], ["auth_token_expires_at", "2015-01-30 04:48:07.679693"], ["auth_token", "SNHfM3hCAa4QXyYgLUqpJz8M5CmKHKezsFfnG6JDTacr"], ["created_at", "2015-01-29 04:48:07.679842"], ["updated_at", "2015-01-29 04:48:07.679842"]]
86
+  (0.0ms) RELEASE SAVEPOINT active_record_1
87
+  (0.7ms) rollback transaction
88
+  (0.1ms) begin transaction
89
+  (0.1ms) SAVEPOINT active_record_1
90
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
91
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.8@baz.org"], ["password_digest", "$2a$04$QTmDvfPFXXfR0zpcp9A1j.x9aGOi5aHVK.otGf7Tiy8d.IPJQJYuu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.682772"], ["created_at", "2015-01-29 04:48:07.687382"], ["updated_at", "2015-01-29 04:48:07.687382"]]
92
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93
+  (0.4ms) rollback transaction
94
+  (0.1ms) begin transaction
95
+  (0.1ms) SAVEPOINT active_record_1
96
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
97
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$EN5N6nu5nOyM4DgBx5l1aOl/5zmoJfskPEtKdsph.e92X6TYNWC0y"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.689996"], ["created_at", "2015-01-29 04:48:07.693287"], ["updated_at", "2015-01-29 04:48:07.693287"]]
98
+  (0.0ms) RELEASE SAVEPOINT active_record_1
99
+  (0.4ms) rollback transaction
100
+  (0.0ms) begin transaction
101
+  (0.0ms) SAVEPOINT active_record_1
102
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
103
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$Lw22D8yFAosoIR5CKYwGSOdTb5bxf.NNe3a7xPSN3p.cjAb14qfAC"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.695504"], ["created_at", "2015-01-29 04:48:07.698156"], ["updated_at", "2015-01-29 04:48:07.698156"]]
104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "oa8vmDDpP4ZYo2sAjVCYs5tDLCuRZ9PDBzeJZxCnfrUr"]]
106
+  (0.4ms) rollback transaction
107
+  (0.0ms) begin transaction
108
+  (0.1ms) SAVEPOINT active_record_1
109
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
110
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$5ri1dgoGHKcWXZNH6T15MePqE4vqVnoYVaQUggcEVX5mbtVZ/fCPC"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.700983"], ["created_at", "2015-01-29 04:48:07.704093"], ["updated_at", "2015-01-29 04:48:07.704093"]]
111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112
+  (0.3ms) rollback transaction
113
+  (0.0ms) begin transaction
114
+  (0.1ms) SAVEPOINT active_record_1
115
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
116
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$Apli7Yyw/TvQXAYvH8uIPO7Pp1.qnqiljMyagTySY7wc3J3E8qmQW"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.706657"], ["created_at", "2015-01-29 04:48:07.709961"], ["updated_at", "2015-01-29 04:48:07.709961"]]
117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
118
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "bpsTJY7Tmh68uAQ52YbwgAeeMmfFAnSot32kdH3YbUcr"]]
119
+  (0.4ms) rollback transaction
120
+  (0.1ms) begin transaction
121
+  (0.1ms) SAVEPOINT active_record_1
122
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
123
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.13@baz.org"], ["password_digest", "$2a$04$qVkL0cGic0cYaXaSBg54c.8gGDWznT0Sg2ojtQCHh2RmkZKiuwFYm"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.715145"], ["created_at", "2015-01-29 04:48:07.719555"], ["updated_at", "2015-01-29 04:48:07.719555"]]
124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
125
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "UkdZCs62CzkpmH9XqD3SdjoUwmZuzrwsfMekii5duxcr"]]
126
+  (0.5ms) rollback transaction
127
+  (0.1ms) begin transaction
128
+  (0.0ms) SAVEPOINT active_record_1
129
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
130
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.14@baz.org"], ["password_digest", "$2a$04$Rvphe6sjIc00cghzRIF8qOc7S6VYSDmCVId4a.mjfZSKlHdfBG20K"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.731427"], ["created_at", "2015-01-29 04:48:07.734302"], ["updated_at", "2015-01-29 04:48:07.734302"]]
131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
132
+  (0.6ms) rollback transaction
133
+  (0.0ms) begin transaction
134
+  (0.0ms) SAVEPOINT active_record_1
135
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
136
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.15@baz.org"], ["password_digest", "$2a$04$RsdKoq/28PFh66v0pxvf3.fsd9PdGP.LYdPpyb7kmVbAPZ17DOyaO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.736675"], ["created_at", "2015-01-29 04:48:07.739438"], ["updated_at", "2015-01-29 04:48:07.739438"]]
137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
138
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "qqwvfXxy5b7xY1KyHXXbMiszhsqMvoU4e5ZbdsKH64Ur"]]
139
+  (0.0ms) SAVEPOINT active_record_1
140
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "qqwvfXxy5b7xY1KyHXXbMiszhsqMvoU4e5ZbdsKH64Ur"], ["auth_token_expires_at", "2015-01-30 04:48:07.741052"], ["updated_at", "2015-01-29 04:48:07.741391"], ["id", 1]]
141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
142
+  (0.9ms) rollback transaction
143
+  (0.1ms) begin transaction
144
+  (0.1ms) SAVEPOINT active_record_1
145
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
146
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.16@baz.org"], ["password_digest", "$2a$04$xcoi2njg0L62itFi2XopvOpFhQtS7m0EAyPZyFADTbB5c717BRdt."], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.745370"], ["created_at", "2015-01-29 04:48:07.750532"], ["updated_at", "2015-01-29 04:48:07.750532"]]
147
+  (0.1ms) RELEASE SAVEPOINT active_record_1
148
+  (0.5ms) rollback transaction
149
+  (0.1ms) begin transaction
150
+  (0.1ms) SAVEPOINT active_record_1
151
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
152
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$5PYEjU..TLnQvfHNnzMgwOUwZoeWWvLzbAZttdrsXTzcDEIQC5QA."], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.753738"], ["created_at", "2015-01-29 04:48:07.757260"], ["updated_at", "2015-01-29 04:48:07.757260"]]
153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
154
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "NemyUDhndMpm9o9wsQTXzanXPmXFFzM71JZUPj6P22Yr"]]
155
+  (0.1ms) SAVEPOINT active_record_1
156
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "NemyUDhndMpm9o9wsQTXzanXPmXFFzM71JZUPj6P22Yr"], ["auth_token_expires_at", "2015-01-30 04:48:07.759301"], ["updated_at", "2015-01-29 04:48:07.759851"], ["id", 1]]
157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
158
+  (0.8ms) rollback transaction
159
+  (0.0ms) begin transaction
160
+  (0.0ms) SAVEPOINT active_record_1
161
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
162
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.18@baz.org"], ["password_digest", "$2a$04$xYdi6mXJ0lq.30cr7JRAMegDwsbRlQMEKesFg0Qfgb9n68WMWqeOi"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.762596"], ["created_at", "2015-01-29 04:48:07.765497"], ["updated_at", "2015-01-29 04:48:07.765497"]]
163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
164
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "8pFNcUnQh8u2Uc5sRugn2XwT6GpBMmWRfEqyhsASty8r"]]
165
+  (0.5ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+  (0.1ms) SAVEPOINT active_record_1
168
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
169
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.19@baz.org"], ["password_digest", "$2a$04$U.YFMvsGYuvYf9Yrj2bD7utOnUJFOfm8VtCeziWT654AEuHH7M1NK"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-29 04:49:07.768742"], ["created_at", "2015-01-29 04:48:07.771398"], ["updated_at", "2015-01-29 04:48:07.771398"]]
170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
171
+  (0.4ms) rollback transaction
172
+  (0.1ms) begin transaction
173
+  (0.0ms) SAVEPOINT active_record_1
174
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
175
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$P1zdzWb6tL5Z.7SGStWjdeJKda0PQCigVkaxvv3R91eFxcBTRYoVO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-29 04:47:07.773764"], ["created_at", "2015-01-29 04:48:07.776545"], ["updated_at", "2015-01-29 04:48:07.776545"]]
176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
177
+  (0.5ms) rollback transaction
178
+  (0.0ms) begin transaction
179
+  (0.0ms) SAVEPOINT active_record_1
180
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
181
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$BF9Y7aCIBkDJ4lZNW6WZZOuXKeuHQkUo76.eMEk7h4EgRSHIEaAvu"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.778954"], ["created_at", "2015-01-29 04:48:07.781772"], ["updated_at", "2015-01-29 04:48:07.781772"]]
182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
183
+  (0.4ms) rollback transaction
184
+  (0.2ms) begin transaction
185
+  (0.1ms) SAVEPOINT active_record_1
186
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
187
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$qa1n1YgHED28xsf8VfYSNe7W24xY4/4nMsmX.yE.mIudidDRzCmty"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-01-30 04:48:07.784431"], ["created_at", "2015-01-29 04:48:07.789688"], ["updated_at", "2015-01-29 04:48:07.789688"]]
188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
189
+  (0.4ms) rollback transaction
190
+  (0.1ms) begin transaction
191
+  (0.1ms) SAVEPOINT active_record_1
192
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
193
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$EYQu2RFfHla2rkET65dKce1TEli2Wdd6wZk1jo7JFihIt8MGCa9tS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.793727"], ["created_at", "2015-01-29 04:48:07.796849"], ["updated_at", "2015-01-29 04:48:07.796849"]]
194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
195
+  (0.4ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+  (0.0ms) SAVEPOINT active_record_1
198
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
199
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$3APqaY7i9ghbhXmux4DNS.3VlHUSK8jBgyd21x2G0c3pr5iO5Ylq6"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.799093"], ["created_at", "2015-01-29 04:48:07.801991"], ["updated_at", "2015-01-29 04:48:07.801991"]]
200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
201
+  (0.4ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+  (0.0ms) SAVEPOINT active_record_1
204
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
205
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$3t9DokIi6.v0n2zr43Am5OoCEKXSf48I8YXeVibVtpjeIatWpQoyq"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-22 04:48:07.810541"], ["created_at", "2015-01-29 04:48:07.813574"], ["updated_at", "2015-01-29 04:48:07.813574"]]
206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
207
+  (0.0ms) SAVEPOINT active_record_1
208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
209
+  (0.5ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+  (0.0ms) SAVEPOINT active_record_1
212
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
213
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$/8cr72Xl0OtnJ8VyaBFHfeL6ZgM4WjgQFfT4bVJp7S/B1wxnAGkfO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-22 04:48:07.816528"], ["created_at", "2015-01-29 04:48:07.820488"], ["updated_at", "2015-01-29 04:48:07.820488"]]
214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
215
+  (0.0ms) SAVEPOINT active_record_1
216
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
217
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "vCsdUo1XgGqVJaZqkga4c96XRgCCLqqinJsqRxcrmqEr"]]
218
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "vCsdUo1XgGqVJaZqkga4c96XRgCCLqqinJsqRxcrmqEr"], ["auth_token_expires_at", "2015-01-30 04:48:07.822915"], ["updated_at", "2015-01-29 04:48:07.823219"], ["id", 1]]
219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
220
+  (0.9ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+  (0.0ms) SAVEPOINT active_record_1
223
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
224
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$H.kv6nnRM2PALSZXeWEExOBOIHWb9T.lbTTM2XV1n9Vz49dqiFtsu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.825999"], ["created_at", "2015-01-29 04:48:07.828922"], ["updated_at", "2015-01-29 04:48:07.828922"]]
225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
226
+  (0.1ms) SAVEPOINT active_record_1
227
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
228
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.833864' WHERE "accounts"."id" = ? [["id", 1]]
229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
230
+  (0.8ms) rollback transaction
231
+  (0.0ms) begin transaction
232
+  (0.0ms) SAVEPOINT active_record_1
233
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
234
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$y3gbeSORD.O1WENIGV7j4.hqtjhr8qogqPKd.eklk9SE3Wr.hjCl."], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.836619"], ["created_at", "2015-01-29 04:48:07.839746"], ["updated_at", "2015-01-29 04:48:07.839746"]]
235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
236
+  (0.0ms) SAVEPOINT active_record_1
237
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
238
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.841486' WHERE "accounts"."id" = ? [["id", 1]]
239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
240
+  (0.5ms) rollback transaction
241
+  (0.0ms) begin transaction
242
+  (0.0ms) SAVEPOINT active_record_1
243
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
244
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$CLcuGdaaBJn8q6MFwuMxaO7HkxoRfvhqzFJg8qmp48bUT1/pbAxbu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.843586"], ["created_at", "2015-01-29 04:48:07.846472"], ["updated_at", "2015-01-29 04:48:07.846472"]]
245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
246
+  (0.0ms) SAVEPOINT active_record_1
247
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
248
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.848072' WHERE "accounts"."id" = ? [["id", 1]]
249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
250
+  (1.1ms) rollback transaction
251
+  (0.3ms) begin transaction
252
+  (0.1ms) SAVEPOINT active_record_1
253
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
254
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$.tHDFQ0opQcGNJl6aI3AYeD7VObltuto1JdOLYq03QbBhDTEOMuCu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.851697"], ["created_at", "2015-01-29 04:48:07.855526"], ["updated_at", "2015-01-29 04:48:07.855526"]]
255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
256
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
257
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zbsSqE6JthGoFcxspyWPvwyq9hcThwW1uKMf2FD2cGEr"]]
258
+  (0.0ms) SAVEPOINT active_record_1
259
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "zbsSqE6JthGoFcxspyWPvwyq9hcThwW1uKMf2FD2cGEr"], ["auth_token_expires_at", "2015-01-30 04:48:07.859212"], ["updated_at", "2015-01-29 04:48:07.859595"], ["id", 1]]
260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
261
+  (0.7ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+  (0.0ms) SAVEPOINT active_record_1
264
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
265
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$4jEQbD8LfW0H/QthaYn9WOQicwq/naKmSrKofiy.Fv85SzQzeBBqO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.862150"], ["created_at", "2015-01-29 04:48:07.864997"], ["updated_at", "2015-01-29 04:48:07.864997"]]
266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
267
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
268
+  (0.5ms) rollback transaction
269
+  (0.0ms) begin transaction
270
+  (0.0ms) SAVEPOINT active_record_1
271
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
272
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$56cogCx7hSGBue7qLoKIJuAY9bIg71XYYcOHAOdY6ZuJziRuqyf/C"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-30 04:48:07.869241"], ["created_at", "2015-01-29 04:48:07.872367"], ["updated_at", "2015-01-29 04:48:07.872367"]]
273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
274
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com_evil"]]
275
+  (0.4ms) rollback transaction
276
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
277
+  (0.1ms) begin transaction
278
+  (0.1ms) SAVEPOINT active_record_1
279
+ Account Exists (0.6ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
280
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "sjzdFwSixBBiZTbUHeuyuTKTDh8Y5Tv9NFKGZzyyJBsr"]]
281
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$6/nTV/3ubCGx1z3/G//G4eNhE46eBT2/6YYd7NDPmwWHh2uB9WoZq"], ["auth_token", "sjzdFwSixBBiZTbUHeuyuTKTDh8Y5Tv9NFKGZzyyJBsr"], ["auth_token_expires_at", "2015-02-03 18:25:11.742485"], ["created_at", "2015-02-02 18:25:11.742779"], ["updated_at", "2015-02-02 18:25:11.742779"]]
282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
283
+ Processing by AccountsController#index as HTML
284
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
285
+  (0.4ms) rollback transaction
286
+  (0.0ms) begin transaction
287
+  (0.0ms) SAVEPOINT active_record_1
288
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
289
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "VCg1Z263sZ6enSxv65CXhReeWxcKw2gUJxfY7E7qz4cr"]]
290
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$ZHg9xADhEslJWePS1srO6uScCxCIWb8ueCOWm1Ag4V9OFE/aBSo.G"], ["auth_token", "VCg1Z263sZ6enSxv65CXhReeWxcKw2gUJxfY7E7qz4cr"], ["auth_token_expires_at", "2015-02-03 18:25:11.752796"], ["created_at", "2015-02-02 18:25:11.753029"], ["updated_at", "2015-02-02 18:25:11.753029"]]
291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
292
+ Processing by AccountsController#show as HTML
293
+ Parameters: {"id"=>"1"}
294
+  (0.1ms) SAVEPOINT active_record_1
295
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
296
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.756454' WHERE "accounts"."id" = ? [["id", 1]]
297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
298
+ Completed 200 OK in 2ms (ActiveRecord: 0.6ms)
299
+  (0.7ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+ Processing by AccountsController#index as HTML
302
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
303
+  (0.0ms) rollback transaction
304
+  (0.0ms) begin transaction
305
+ Processing by AccountsController#show as HTML
306
+ Parameters: {"id"=>"1"}
307
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
308
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
309
+  (0.0ms) rollback transaction
310
+  (0.0ms) begin transaction
311
+  (0.0ms) rollback transaction
312
+  (0.1ms) begin transaction
313
+  (0.0ms) SAVEPOINT active_record_1
314
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
315
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "TZRyyFAT8p4Hy91zHXpzFqppFw411GvXvSyQiVbDKs4r"]]
316
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$/L5xJg6uZib0aaoB025OyehLwzQD98.EwY9rqt.t5YnRsopyFU0x."], ["auth_token", "TZRyyFAT8p4Hy91zHXpzFqppFw411GvXvSyQiVbDKs4r"], ["auth_token_expires_at", "2015-02-03 18:25:11.769164"], ["created_at", "2015-02-02 18:25:11.769379"], ["updated_at", "2015-02-02 18:25:11.769379"]]
317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
318
+ Processing by AccountsController#show as HTML
319
+ Parameters: {"id"=>"1"}
320
+  (0.0ms) SAVEPOINT active_record_1
321
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
322
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.772629' WHERE "accounts"."id" = ? [["id", 1]]
323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
324
+ Completed 200 OK in 2ms (ActiveRecord: 0.6ms)
325
+  (0.9ms) rollback transaction
326
+  (0.0ms) begin transaction
327
+  (0.0ms) SAVEPOINT active_record_1
328
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
329
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
330
+  (0.1ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+  (0.1ms) SAVEPOINT active_record_1
333
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
334
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "tJ9b2oiayvv9g6ptmqLqxkdkqHiK5fodABCRXXAoCFAr"]]
335
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$vXqgp0LYEhON8Q9xpoQp6.XB6gEvAvklI.FvZ4zAT6s174/neSGSS"], ["auth_token", "tJ9b2oiayvv9g6ptmqLqxkdkqHiK5fodABCRXXAoCFAr"], ["auth_token_expires_at", "2015-02-03 18:25:11.793065"], ["created_at", "2015-02-02 18:25:11.793287"], ["updated_at", "2015-02-02 18:25:11.793287"]]
336
+  (0.0ms) RELEASE SAVEPOINT active_record_1
337
+  (0.0ms) SAVEPOINT active_record_1
338
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
339
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
340
+  (0.5ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+  (0.0ms) SAVEPOINT active_record_1
343
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
344
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
345
+  (0.0ms) rollback transaction
346
+  (0.0ms) begin transaction
347
+  (0.0ms) SAVEPOINT active_record_1
348
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
349
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
350
+  (0.1ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+  (0.1ms) SAVEPOINT active_record_1
353
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
354
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
355
+  (0.0ms) rollback transaction
356
+  (0.0ms) begin transaction
357
+  (0.0ms) SAVEPOINT active_record_1
358
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
359
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "kK4xzGyswDUhmamcxqZcfks5w9uP3opVAuaQqSYNVnMr"]]
360
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.7@baz.org"], ["password_digest", "$2a$04$P3RU6VYovn8XkYEEbYvbreQICZkVgZoK7n8yW9H.HPWdhnmpIEFfC"], ["auth_token_expires_at", "2015-02-03 18:25:11.813826"], ["auth_token", "kK4xzGyswDUhmamcxqZcfks5w9uP3opVAuaQqSYNVnMr"], ["created_at", "2015-02-02 18:25:11.814022"], ["updated_at", "2015-02-02 18:25:11.814022"]]
361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
362
+  (0.5ms) rollback transaction
363
+  (0.0ms) begin transaction
364
+  (0.0ms) SAVEPOINT active_record_1
365
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
366
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.8@baz.org"], ["password_digest", "$2a$04$.FXqm02VDXjMr7cn8yk60eNPau9EAC9Y8oxb0VkAg5fFhlbXPeEuC"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.816660"], ["created_at", "2015-02-02 18:25:11.819578"], ["updated_at", "2015-02-02 18:25:11.819578"]]
367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
368
+  (0.4ms) rollback transaction
369
+  (0.0ms) begin transaction
370
+  (0.0ms) SAVEPOINT active_record_1
371
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
372
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$PMYicvSCkkEqihPEsnsRSOY/SnIU7pqaFV9Ut2aL7dnR.etOCNCpi"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.821904"], ["created_at", "2015-02-02 18:25:11.824755"], ["updated_at", "2015-02-02 18:25:11.824755"]]
373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
374
+  (0.4ms) rollback transaction
375
+  (0.0ms) begin transaction
376
+  (0.1ms) SAVEPOINT active_record_1
377
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
378
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$Z5pr2Y4PzcZhZE3YMdRt8uBrEQT4TSnwZc84sT3Rb8lVReW1xw2vq"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.827111"], ["created_at", "2015-02-02 18:25:11.830240"], ["updated_at", "2015-02-02 18:25:11.830240"]]
379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
380
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "XQCuQHxEU9qbfxss45rpm1grd48jTFv9tWeuqtHbmSQr"]]
381
+  (0.4ms) rollback transaction
382
+  (0.1ms) begin transaction
383
+  (0.1ms) SAVEPOINT active_record_1
384
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
385
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$Zfj46RMN5rLzbthWAoBPRef2.a3ejw98Q1adaJm7IR/Gh5CHPrSCi"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.833638"], ["created_at", "2015-02-02 18:25:11.836986"], ["updated_at", "2015-02-02 18:25:11.836986"]]
386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
387
+  (0.5ms) rollback transaction
388
+  (0.0ms) begin transaction
389
+  (0.0ms) SAVEPOINT active_record_1
390
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
391
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$HHbBAC/LO0TLLp95wYF00OURtGECg4x2Kjy7sYS8iIhfmt2r0E98q"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.839565"], ["created_at", "2015-02-02 18:25:11.842430"], ["updated_at", "2015-02-02 18:25:11.842430"]]
392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
393
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "ucshgw8VKgR4ctRszHw8CqmkHxFf1VibT8vWctqz4CEr"]]
394
+  (0.4ms) rollback transaction
395
+  (0.0ms) begin transaction
396
+  (0.1ms) SAVEPOINT active_record_1
397
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
398
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.13@baz.org"], ["password_digest", "$2a$04$4l0h0Zo.SBFDZnuDPBjs7.xALn1MXfATyQ2FhfEm70zYAyVqPYST."], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.847755"], ["created_at", "2015-02-02 18:25:11.851374"], ["updated_at", "2015-02-02 18:25:11.851374"]]
399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
400
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "x8buHyzAvXndUkgPDayCzxthT4jd1EjTPurcoYNqSNAr"]]
401
+  (0.4ms) rollback transaction
402
+  (0.0ms) begin transaction
403
+  (0.0ms) SAVEPOINT active_record_1
404
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
405
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.14@baz.org"], ["password_digest", "$2a$04$zBeVVc4h1lOpR.dBJ4mmuOT6JUHWFBGMUJlI8k12yTARtvJP7PQSO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.863741"], ["created_at", "2015-02-02 18:25:11.866906"], ["updated_at", "2015-02-02 18:25:11.866906"]]
406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
407
+  (0.4ms) rollback transaction
408
+  (0.1ms) begin transaction
409
+  (0.0ms) SAVEPOINT active_record_1
410
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
411
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.15@baz.org"], ["password_digest", "$2a$04$fQqcaJdXJq7AsTXaq61uE.KxguD6bzAgFAGIcZXe3U7D9.0ucSOqi"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.869233"], ["created_at", "2015-02-02 18:25:11.872260"], ["updated_at", "2015-02-02 18:25:11.872260"]]
412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
413
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Nz2Gn1vNxnrtXaQ6vzRvqXae9YLpmkabH56YX1t7n84r"]]
414
+  (0.0ms) SAVEPOINT active_record_1
415
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "Nz2Gn1vNxnrtXaQ6vzRvqXae9YLpmkabH56YX1t7n84r"], ["auth_token_expires_at", "2015-02-03 18:25:11.874296"], ["updated_at", "2015-02-02 18:25:11.874687"], ["id", 1]]
416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
417
+  (0.9ms) rollback transaction
418
+  (0.1ms) begin transaction
419
+  (0.0ms) SAVEPOINT active_record_1
420
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
421
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.16@baz.org"], ["password_digest", "$2a$04$fDzAU6a8Zx5QhFh.emspMepwzl6PzQrJkKax8tHgInvsVmFxm/bhG"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.877946"], ["created_at", "2015-02-02 18:25:11.880886"], ["updated_at", "2015-02-02 18:25:11.880886"]]
422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
423
+  (0.4ms) rollback transaction
424
+  (0.1ms) begin transaction
425
+  (0.1ms) SAVEPOINT active_record_1
426
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
427
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$9BmB9iyKj1W8YMuyw/29g.luVlAH2A8fLDCnxnC1mc0mqrnddALFq"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.883282"], ["created_at", "2015-02-02 18:25:11.886570"], ["updated_at", "2015-02-02 18:25:11.886570"]]
428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
429
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "4giyGwTs9qk4NsBdeFxCLgfQVzzzBpcKYzX17VmZgqMr"]]
430
+  (0.0ms) SAVEPOINT active_record_1
431
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "4giyGwTs9qk4NsBdeFxCLgfQVzzzBpcKYzX17VmZgqMr"], ["auth_token_expires_at", "2015-02-03 18:25:11.888156"], ["updated_at", "2015-02-02 18:25:11.888505"], ["id", 1]]
432
+  (0.1ms) RELEASE SAVEPOINT active_record_1
433
+  (0.9ms) rollback transaction
434
+  (0.0ms) begin transaction
435
+  (0.0ms) SAVEPOINT active_record_1
436
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
437
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.18@baz.org"], ["password_digest", "$2a$04$hCWk3likWm8ndqbWqRM9K.FlGs/8MlApYrIFWS0/CqbSK04Ddxb6C"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.891234"], ["created_at", "2015-02-02 18:25:11.893976"], ["updated_at", "2015-02-02 18:25:11.893976"]]
438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
439
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "F3iqopQDALRUPNxXsytsGx2uRtsjvaDFz7LxsRRgADUr"]]
440
+  (0.4ms) rollback transaction
441
+  (0.0ms) begin transaction
442
+  (0.1ms) SAVEPOINT active_record_1
443
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
444
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.19@baz.org"], ["password_digest", "$2a$04$XBByao4gx2fTHu7VNRBasu1HcsKXdaXXm9STl3X4a4syjrAMXizZW"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:26:11.899258"], ["created_at", "2015-02-02 18:25:11.902440"], ["updated_at", "2015-02-02 18:25:11.902440"]]
445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
446
+  (0.5ms) rollback transaction
447
+  (0.1ms) begin transaction
448
+  (0.1ms) SAVEPOINT active_record_1
449
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
450
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$iA0pLuK3q5ljerVo15pOvurY0bnoVxYHA33NYf1X8322fxdeJVDMi"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:24:11.905389"], ["created_at", "2015-02-02 18:25:11.909813"], ["updated_at", "2015-02-02 18:25:11.909813"]]
451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
452
+  (0.5ms) rollback transaction
453
+  (0.0ms) begin transaction
454
+  (0.0ms) SAVEPOINT active_record_1
455
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
456
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$eZglt8c7dW7WgEABCcAnYubyTrOnqeAm1pb69tdQwvksO5BG0Tjw2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.912680"], ["created_at", "2015-02-02 18:25:11.915494"], ["updated_at", "2015-02-02 18:25:11.915494"]]
457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
458
+  (0.4ms) rollback transaction
459
+  (0.0ms) begin transaction
460
+  (0.0ms) SAVEPOINT active_record_1
461
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
462
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$yuaZmGDasrFKVbPSux4OOOItvyPLiPrqvBLMdT6I1aoqzdyn6mGi."], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:25:11.917918"], ["created_at", "2015-02-02 18:25:11.920814"], ["updated_at", "2015-02-02 18:25:11.920814"]]
463
+  (0.0ms) RELEASE SAVEPOINT active_record_1
464
+  (0.5ms) rollback transaction
465
+  (0.0ms) begin transaction
466
+  (0.0ms) SAVEPOINT active_record_1
467
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
468
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$0g2f5ovvsMFP35Foefii/Opb6vUTpyn8D1SVDXX35FMTcyTx0iD0m"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.925019"], ["created_at", "2015-02-02 18:25:11.928058"], ["updated_at", "2015-02-02 18:25:11.928058"]]
469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
470
+  (0.4ms) rollback transaction
471
+  (0.0ms) begin transaction
472
+  (0.1ms) SAVEPOINT active_record_1
473
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
474
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$AsnFndqg1/icuWbqTqlj6eFMb4ZEC.njZuOUtSW7mlMlaEu9eSqzO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.930301"], ["created_at", "2015-02-02 18:25:11.939511"], ["updated_at", "2015-02-02 18:25:11.939511"]]
475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
476
+  (0.3ms) rollback transaction
477
+  (0.1ms) begin transaction
478
+  (0.0ms) SAVEPOINT active_record_1
479
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
480
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$wGvJwwIQggPxnQveNFRSnOGpWX/QDP.PdIn2TWsGxdSZP0.6WMYte"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.942012"], ["created_at", "2015-02-02 18:25:11.945121"], ["updated_at", "2015-02-02 18:25:11.945121"]]
481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
482
+  (0.1ms) SAVEPOINT active_record_1
483
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
484
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.950871' WHERE "accounts"."id" = ? [["id", 1]]
485
+  (0.1ms) RELEASE SAVEPOINT active_record_1
486
+  (1.5ms) rollback transaction
487
+  (0.0ms) begin transaction
488
+  (0.0ms) SAVEPOINT active_record_1
489
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
490
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$f1ETR38RPbopKsKOf/zGou52dOcosSxyLv1gcVoKHigY8Vig6oXrO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.954416"], ["created_at", "2015-02-02 18:25:11.957532"], ["updated_at", "2015-02-02 18:25:11.957532"]]
491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
492
+  (0.0ms) SAVEPOINT active_record_1
493
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
494
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.959572' WHERE "accounts"."id" = ? [["id", 1]]
495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
496
+  (0.7ms) rollback transaction
497
+  (0.1ms) begin transaction
498
+  (0.1ms) SAVEPOINT active_record_1
499
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
500
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$oy0.Glg7LF5ZiJ3VWjkPpeBVQ60qu7C1HpOMh03RGwOMr0mysfx6."], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:25:11.962091"], ["created_at", "2015-02-02 18:25:11.965366"], ["updated_at", "2015-02-02 18:25:11.965366"]]
501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
502
+  (0.0ms) SAVEPOINT active_record_1
503
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
504
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "vXTpzMGNmDXcHcCzigx3CsgKqSffXbN7tJLWtou5PvQr"]]
505
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "vXTpzMGNmDXcHcCzigx3CsgKqSffXbN7tJLWtou5PvQr"], ["auth_token_expires_at", "2015-02-03 18:25:11.968794"], ["updated_at", "2015-02-02 18:25:11.969115"], ["id", 1]]
506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
507
+  (1.0ms) rollback transaction
508
+  (0.0ms) begin transaction
509
+  (0.0ms) SAVEPOINT active_record_1
510
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
511
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$qPx392BlPHvoxsF2z3KEMuFYbWd8u3JbBVByAZigH.XWJVYG4XRSK"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:25:11.973392"], ["created_at", "2015-02-02 18:25:11.976701"], ["updated_at", "2015-02-02 18:25:11.976701"]]
512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
513
+  (0.0ms) SAVEPOINT active_record_1
514
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
515
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zV4tuxqGD2fzFs4y9SWQPREHpeX2ZwDcQdPfuZr9zBcr"]]
516
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "zV4tuxqGD2fzFs4y9SWQPREHpeX2ZwDcQdPfuZr9zBcr"], ["auth_token_expires_at", "2015-02-03 18:25:11.979597"], ["updated_at", "2015-02-02 18:25:11.979914"], ["id", 1]]
517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
518
+  (1.1ms) rollback transaction
519
+  (0.0ms) begin transaction
520
+  (0.0ms) SAVEPOINT active_record_1
521
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
522
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$bU3AsxCTTp2PZAq9BWQ12OlnfUBU4cunDmCUyOvZ4cQGE0JDc/U1C"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.983019"], ["created_at", "2015-02-02 18:25:11.986114"], ["updated_at", "2015-02-02 18:25:11.986114"]]
523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
524
+  (0.0ms) SAVEPOINT active_record_1
525
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
526
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.988090' WHERE "accounts"."id" = ? [["id", 1]]
527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
528
+  (0.6ms) rollback transaction
529
+  (0.0ms) begin transaction
530
+  (0.0ms) SAVEPOINT active_record_1
531
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
532
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Sf7Da8CbQQJ9l5X9lnStM.yjFJDJJ2jrWOzNf84AP29GldhfitRZu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.990455"], ["created_at", "2015-02-02 18:25:11.993577"], ["updated_at", "2015-02-02 18:25:11.993577"]]
533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
534
+  (0.0ms) SAVEPOINT active_record_1
535
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
536
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.995428' WHERE "accounts"."id" = ? [["id", 1]]
537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
538
+  (0.8ms) rollback transaction
539
+  (0.0ms) begin transaction
540
+  (0.1ms) SAVEPOINT active_record_1
541
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
542
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$vHibpLqm4YeqCCjMlPdLOueKycy6txyjubAlV3LSe2EezQiOb8usC"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:11.997734"], ["created_at", "2015-02-02 18:25:12.001151"], ["updated_at", "2015-02-02 18:25:12.001151"]]
543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
544
+  (0.0ms) SAVEPOINT active_record_1
545
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
546
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:12.003090' WHERE "accounts"."id" = ? [["id", 1]]
547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
548
+  (0.6ms) rollback transaction
549
+  (0.0ms) begin transaction
550
+  (0.0ms) SAVEPOINT active_record_1
551
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
552
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$YLGnEJCIp7OVzyBN0xnHt.djJN0bmp0dKHaYO1MpR3ohO3Rclfkve"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:12.005477"], ["created_at", "2015-02-02 18:25:12.008558"], ["updated_at", "2015-02-02 18:25:12.008558"]]
553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
554
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
555
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "QRt9LhoYqxSpHyWMAsLnq6xky57CsFhjSx6E2sxuWeMr"]]
556
+  (0.0ms) SAVEPOINT active_record_1
557
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "QRt9LhoYqxSpHyWMAsLnq6xky57CsFhjSx6E2sxuWeMr"], ["auth_token_expires_at", "2015-02-03 18:25:12.012522"], ["updated_at", "2015-02-02 18:25:12.012910"], ["id", 1]]
558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
559
+  (0.8ms) rollback transaction
560
+  (0.0ms) begin transaction
561
+  (0.0ms) SAVEPOINT active_record_1
562
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
563
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$ggW9PHf2HR9DFCP4VIzgF.ZzuzBpYKd.ubpF1Gt0TWRiM1NP0TPey"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:12.015775"], ["created_at", "2015-02-02 18:25:12.018785"], ["updated_at", "2015-02-02 18:25:12.018785"]]
564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
565
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
566
+  (0.5ms) rollback transaction
567
+  (0.1ms) begin transaction
568
+  (0.1ms) SAVEPOINT active_record_1
569
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
570
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$a6kaBnj2V5kNpV5WISlQKOw5xDBPpViO.UYPZH2gCO9VDuSxpvApu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:25:12.023141"], ["created_at", "2015-02-02 18:25:12.026643"], ["updated_at", "2015-02-02 18:25:12.026643"]]
571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
572
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
573
+  (0.4ms) rollback transaction
574
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts"
575
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
576
+  (0.1ms) begin transaction
577
+  (0.1ms) SAVEPOINT active_record_1
578
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
579
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "3yRNuA4YKPGPN1qz1zeTqAcLdkrjNx2neRkjaTgpY9sr"]]
580
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$rBrgT9C.Vu/lufvzol2kOunHKv4cu9HcCn23sYdFZ/R3gvpq0CLHm"], ["auth_token", "3yRNuA4YKPGPN1qz1zeTqAcLdkrjNx2neRkjaTgpY9sr"], ["auth_token_expires_at", "2015-02-03 18:26:00.287285"], ["created_at", "2015-02-02 18:26:00.287577"], ["updated_at", "2015-02-02 18:26:00.287577"]]
581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
582
+ Processing by AccountsController#index as HTML
583
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
584
+  (0.4ms) rollback transaction
585
+  (0.1ms) begin transaction
586
+  (0.0ms) SAVEPOINT active_record_1
587
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
588
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "y7HYYpepDzsycgybzoSpqYHUosfGrb4PVV4VaVxQs8Ar"]]
589
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$YL.7DI.BfetznEZJsy3yfO1xgf7qvL.V9ZDW4x8OCzJCpuPdEnnC6"], ["auth_token", "y7HYYpepDzsycgybzoSpqYHUosfGrb4PVV4VaVxQs8Ar"], ["auth_token_expires_at", "2015-02-03 18:26:00.297612"], ["created_at", "2015-02-02 18:26:00.297808"], ["updated_at", "2015-02-02 18:26:00.297808"]]
590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
591
+ Processing by AccountsController#show as HTML
592
+ Parameters: {"id"=>"1"}
593
+  (0.1ms) SAVEPOINT active_record_1
594
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
595
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.301463' WHERE "accounts"."id" = ? [["id", 1]]
596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
597
+ Completed 200 OK in 3ms (ActiveRecord: 0.7ms)
598
+  (0.7ms) rollback transaction
599
+  (0.0ms) begin transaction
600
+ Processing by AccountsController#index as HTML
601
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
602
+  (0.0ms) rollback transaction
603
+  (0.0ms) begin transaction
604
+ Processing by AccountsController#show as HTML
605
+ Parameters: {"id"=>"1"}
606
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
607
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
608
+  (0.0ms) rollback transaction
609
+  (0.0ms) begin transaction
610
+  (0.1ms) rollback transaction
611
+  (0.0ms) begin transaction
612
+  (0.0ms) SAVEPOINT active_record_1
613
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
614
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BeTYLRhuty8xZ8ZLb667S1pWNMjcouDMhR2QDc2i1bEr"]]
615
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$T9SIrhg9TS0.bvPhdUSnc.KhM3OyKHMOmHFtSRJ6wM4FUjRfbXhE2"], ["auth_token", "BeTYLRhuty8xZ8ZLb667S1pWNMjcouDMhR2QDc2i1bEr"], ["auth_token_expires_at", "2015-02-03 18:26:00.314742"], ["created_at", "2015-02-02 18:26:00.314956"], ["updated_at", "2015-02-02 18:26:00.314956"]]
616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
617
+ Processing by AccountsController#show as HTML
618
+ Parameters: {"id"=>"1"}
619
+  (0.0ms) SAVEPOINT active_record_1
620
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
621
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.317664' WHERE "accounts"."id" = ? [["id", 1]]
622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
623
+ Completed 200 OK in 2ms (ActiveRecord: 0.5ms)
624
+  (0.5ms) rollback transaction
625
+  (0.0ms) begin transaction
626
+  (0.0ms) SAVEPOINT active_record_1
627
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
628
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
629
+  (0.1ms) rollback transaction
630
+  (0.0ms) begin transaction
631
+  (0.0ms) SAVEPOINT active_record_1
632
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
633
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "qcXuJodZRjnvZnRxdnFyNQU6TcU2BFhpTEVBKTiKShMr"]]
634
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$PIDqewSgUp85FzxwgtOQfOle8p/smS0WHHyrKyF6fW3d4U2WSG4bi"], ["auth_token", "qcXuJodZRjnvZnRxdnFyNQU6TcU2BFhpTEVBKTiKShMr"], ["auth_token_expires_at", "2015-02-03 18:26:00.335593"], ["created_at", "2015-02-02 18:26:00.335790"], ["updated_at", "2015-02-02 18:26:00.335790"]]
635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
636
+  (0.0ms) SAVEPOINT active_record_1
637
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
638
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
639
+  (0.4ms) rollback transaction
640
+  (0.0ms) begin transaction
641
+  (0.0ms) SAVEPOINT active_record_1
642
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
643
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
644
+  (0.0ms) rollback transaction
645
+  (0.0ms) begin transaction
646
+  (0.1ms) SAVEPOINT active_record_1
647
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
648
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
649
+  (0.0ms) rollback transaction
650
+  (0.0ms) begin transaction
651
+  (0.0ms) SAVEPOINT active_record_1
652
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
653
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
654
+  (0.0ms) rollback transaction
655
+  (0.0ms) begin transaction
656
+  (0.1ms) SAVEPOINT active_record_1
657
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
658
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zsbMduz3sZRXx2tQc1UYiLdpUSxAfPLT39zwy8qiXpEr"]]
659
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.7@baz.org"], ["password_digest", "$2a$04$XKfvwmyB7Zg5XwkeYQH52OPohiURhV4DCN2xM.NVQBjkbeWnWGJcW"], ["auth_token_expires_at", "2015-02-03 18:26:00.356808"], ["auth_token", "zsbMduz3sZRXx2tQc1UYiLdpUSxAfPLT39zwy8qiXpEr"], ["created_at", "2015-02-02 18:26:00.357013"], ["updated_at", "2015-02-02 18:26:00.357013"]]
660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
661
+  (0.4ms) rollback transaction
662
+  (0.0ms) begin transaction
663
+  (0.0ms) SAVEPOINT active_record_1
664
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
665
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.8@baz.org"], ["password_digest", "$2a$04$fQxlRJz8TtDwoBlrg0F7B.bFjQLhm/Mvo5WmN931lgmdsSHDKUP9u"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.359632"], ["created_at", "2015-02-02 18:26:00.362632"], ["updated_at", "2015-02-02 18:26:00.362632"]]
666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
667
+  (0.4ms) rollback transaction
668
+  (0.0ms) begin transaction
669
+  (0.0ms) SAVEPOINT active_record_1
670
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
671
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$9aV3zbpZU0OhBe5x1ImZZOoMnfSNBmg9KyIRfJxrCgcr0GBlYnvLy"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.365021"], ["created_at", "2015-02-02 18:26:00.367860"], ["updated_at", "2015-02-02 18:26:00.367860"]]
672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
673
+  (0.4ms) rollback transaction
674
+  (0.0ms) begin transaction
675
+  (0.0ms) SAVEPOINT active_record_1
676
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
677
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$.C3sc6F70h.ySiHsoDE/d.gYjP2e/v3faqSDZAetlRXjPNSUdE74C"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.370281"], ["created_at", "2015-02-02 18:26:00.373078"], ["updated_at", "2015-02-02 18:26:00.373078"]]
678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
679
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "juA2FbHtabLCQxVftMYkeqpSzknq6ZHp8NYvekR97ggr"]]
680
+  (0.3ms) rollback transaction
681
+  (0.0ms) begin transaction
682
+  (0.1ms) SAVEPOINT active_record_1
683
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
684
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$QWqkWc9Ux5imXVGW10igGufwirhsWBpR4kf4E/60cLBa.mtbw4V96"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.375755"], ["created_at", "2015-02-02 18:26:00.379019"], ["updated_at", "2015-02-02 18:26:00.379019"]]
685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
686
+  (0.4ms) rollback transaction
687
+  (0.0ms) begin transaction
688
+  (0.0ms) SAVEPOINT active_record_1
689
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
690
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$lEEQekUsz40NzOTpDNwE3e/AAY7RKqKNqAIxxho/bJh6z4FGAalRy"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.381809"], ["created_at", "2015-02-02 18:26:00.384789"], ["updated_at", "2015-02-02 18:26:00.384789"]]
691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
692
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "9Pz8YEsdN8wEgDjCpVxz2U9yGFgn5jVbfq5UxQ4QZhxr"]]
693
+  (0.4ms) rollback transaction
694
+  (0.0ms) begin transaction
695
+  (0.1ms) SAVEPOINT active_record_1
696
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
697
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.13@baz.org"], ["password_digest", "$2a$04$abESvD9ynxI9jchmt6jl5OHn2Q3pVioDgNvT.3exxX2sh9blUoXeu"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.389466"], ["created_at", "2015-02-02 18:26:00.392657"], ["updated_at", "2015-02-02 18:26:00.392657"]]
698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
699
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "DnjYDcXsogxtQaU9qrVXe5KfuS7HbQPdh4a5kdbALFxr"]]
700
+  (0.5ms) rollback transaction
701
+  (0.0ms) begin transaction
702
+  (0.1ms) SAVEPOINT active_record_1
703
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
704
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.14@baz.org"], ["password_digest", "$2a$04$BZuARWcCaqzaxCjRIv8bI.NXg.BX/kZ8l4r7TVcRqsXzJybB9AXVC"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.403357"], ["created_at", "2015-02-02 18:26:00.406626"], ["updated_at", "2015-02-02 18:26:00.406626"]]
705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
706
+  (0.4ms) rollback transaction
707
+  (0.1ms) begin transaction
708
+  (0.0ms) SAVEPOINT active_record_1
709
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
710
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.15@baz.org"], ["password_digest", "$2a$04$S8WBT7QVZtnQV/4ADS5bbOFDViTi785bE4Ck4UEP/tExlgzxCGZNO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.408945"], ["created_at", "2015-02-02 18:26:00.411901"], ["updated_at", "2015-02-02 18:26:00.411901"]]
711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
712
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BdEFpL8HCfp93xCtKKct2TmMw88QjAGdySMK45Yq5oMr"]]
713
+  (0.0ms) SAVEPOINT active_record_1
714
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "BdEFpL8HCfp93xCtKKct2TmMw88QjAGdySMK45Yq5oMr"], ["auth_token_expires_at", "2015-02-03 18:26:00.413561"], ["updated_at", "2015-02-02 18:26:00.413920"], ["id", 1]]
715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
716
+  (0.6ms) rollback transaction
717
+  (0.0ms) begin transaction
718
+  (0.1ms) SAVEPOINT active_record_1
719
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
720
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.16@baz.org"], ["password_digest", "$2a$04$aPoPoHAH5PpvBczvy3aHceQnzTqldzYX8.mb3pfWxJJSP8B.z3vC6"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.417012"], ["created_at", "2015-02-02 18:26:00.420082"], ["updated_at", "2015-02-02 18:26:00.420082"]]
721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
722
+  (0.4ms) rollback transaction
723
+  (0.0ms) begin transaction
724
+  (0.0ms) SAVEPOINT active_record_1
725
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
726
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$Jjjb.EkRU3ZN9RAV41/svOfO.i6spPUMNUo.bsOtnKSiC2cPIna9S"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.422296"], ["created_at", "2015-02-02 18:26:00.425110"], ["updated_at", "2015-02-02 18:26:00.425110"]]
727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
728
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Zh3HEJHaqUuCePVkQtxRYx5xvupBrmWhYU5RGyA5CJAr"]]
729
+  (0.0ms) SAVEPOINT active_record_1
730
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "Zh3HEJHaqUuCePVkQtxRYx5xvupBrmWhYU5RGyA5CJAr"], ["auth_token_expires_at", "2015-02-03 18:26:00.426902"], ["updated_at", "2015-02-02 18:26:00.427264"], ["id", 1]]
731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
732
+  (0.6ms) rollback transaction
733
+  (0.1ms) begin transaction
734
+  (0.1ms) SAVEPOINT active_record_1
735
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
736
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.18@baz.org"], ["password_digest", "$2a$04$6kHEFHGYJZD5lnra569FgekjA2UkAQ5Lgq0OSIg9AZNd4fj70N2RG"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.429642"], ["created_at", "2015-02-02 18:26:00.432830"], ["updated_at", "2015-02-02 18:26:00.432830"]]
737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
738
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "KwqyQTrCzizowK9VtYE7HNbquzKmwqKh11ZwyydS5c4r"]]
739
+  (0.4ms) rollback transaction
740
+  (0.0ms) begin transaction
741
+  (0.0ms) SAVEPOINT active_record_1
742
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
743
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.19@baz.org"], ["password_digest", "$2a$04$6KZxn.qBdB/IBEVY9izmRuMCf6UOnnl6NrmUCMWdGLa9ll53fe3mm"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:27:00.436255"], ["created_at", "2015-02-02 18:26:00.439164"], ["updated_at", "2015-02-02 18:26:00.439164"]]
744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
745
+  (0.3ms) rollback transaction
746
+  (0.0ms) begin transaction
747
+  (0.0ms) SAVEPOINT active_record_1
748
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
749
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$Grnw6Y.yKhNIUv9YfyLI8u29fkB1d5CubSdOUT.S.1NkJjI0YO10G"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:25:00.441390"], ["created_at", "2015-02-02 18:26:00.444365"], ["updated_at", "2015-02-02 18:26:00.444365"]]
750
+  (0.1ms) RELEASE SAVEPOINT active_record_1
751
+  (0.3ms) rollback transaction
752
+  (0.0ms) begin transaction
753
+  (0.0ms) SAVEPOINT active_record_1
754
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
755
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$IrXmRpRE9fv4MNN9NX4v.eD1CI1RcR5PRirOfvxzsUD8kGfV9qXru"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.447736"], ["created_at", "2015-02-02 18:26:00.450991"], ["updated_at", "2015-02-02 18:26:00.450991"]]
756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
757
+  (0.4ms) rollback transaction
758
+  (0.0ms) begin transaction
759
+  (0.0ms) SAVEPOINT active_record_1
760
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
761
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$27vLpx/h0P1Pn6fRZtb30uMYtpNu4UwFtuw8ugE6dpIAXxYIerXSe"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:26:00.453327"], ["created_at", "2015-02-02 18:26:00.456291"], ["updated_at", "2015-02-02 18:26:00.456291"]]
762
+  (0.1ms) RELEASE SAVEPOINT active_record_1
763
+  (0.5ms) rollback transaction
764
+  (0.1ms) begin transaction
765
+  (0.1ms) SAVEPOINT active_record_1
766
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
767
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$rm9NOQBFhlk3WkpLJsfLI.lfkWFuRoZGUGjyZKmuc6ux7LhT3a2zK"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.461193"], ["created_at", "2015-02-02 18:26:00.464374"], ["updated_at", "2015-02-02 18:26:00.464374"]]
768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
769
+  (0.4ms) rollback transaction
770
+  (0.0ms) begin transaction
771
+  (0.1ms) SAVEPOINT active_record_1
772
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
773
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$qbbjE6hwIjvSgtQbBgaCV.1B9ZS6EtQRvhcE4hYI.fcg0wHK/K4My"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.466715"], ["created_at", "2015-02-02 18:26:00.475892"], ["updated_at", "2015-02-02 18:26:00.475892"]]
774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
775
+  (0.4ms) rollback transaction
776
+  (0.0ms) begin transaction
777
+  (0.0ms) SAVEPOINT active_record_1
778
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
779
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$7Kpsj0NTXHeYijtVYKPyB.0CagVuLE1mnCleFN7SokHxai/YQMpBq"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.478716"], ["created_at", "2015-02-02 18:26:00.482087"], ["updated_at", "2015-02-02 18:26:00.482087"]]
780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+  (0.1ms) SAVEPOINT active_record_1
782
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
783
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.486762' WHERE "accounts"."id" = ? [["id", 1]]
784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
785
+  (0.6ms) rollback transaction
786
+  (0.0ms) begin transaction
787
+  (0.0ms) SAVEPOINT active_record_1
788
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
789
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$HMcKfmZ.tZ/xHC8StPWJC.1Vt3mPRrvYsecxFPIbDOqBUR7009m6C"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.489422"], ["created_at", "2015-02-02 18:26:00.492599"], ["updated_at", "2015-02-02 18:26:00.492599"]]
790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
791
+  (0.0ms) SAVEPOINT active_record_1
792
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
793
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.494777' WHERE "accounts"."id" = ? [["id", 1]]
794
+  (0.1ms) RELEASE SAVEPOINT active_record_1
795
+  (0.6ms) rollback transaction
796
+  (0.0ms) begin transaction
797
+  (0.0ms) SAVEPOINT active_record_1
798
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
799
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$gcExi9ROxZ51ykY3JD5WauFhB6KUMF3dLHG1RAPx92dXtH4CVpKM."], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:26:00.497377"], ["created_at", "2015-02-02 18:26:00.500608"], ["updated_at", "2015-02-02 18:26:00.500608"]]
800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
801
+  (0.0ms) SAVEPOINT active_record_1
802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
803
+  (0.3ms) rollback transaction
804
+  (0.0ms) begin transaction
805
+  (0.0ms) SAVEPOINT active_record_1
806
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
807
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$V/0I/xI7i8k.0JntLxIntecf1IB94fj1c4AzWnpl7beEEeeAOEMNG"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:26:00.503843"], ["created_at", "2015-02-02 18:26:00.506997"], ["updated_at", "2015-02-02 18:26:00.506997"]]
808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
809
+  (0.0ms) SAVEPOINT active_record_1
810
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
811
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Es1cp4bqn9A1bcdgnTxJSTwB5eqHyPCJZCcSWqBb7Fkr"]]
812
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "Es1cp4bqn9A1bcdgnTxJSTwB5eqHyPCJZCcSWqBb7Fkr"], ["auth_token_expires_at", "2015-02-03 18:26:00.509724"], ["updated_at", "2015-02-02 18:26:00.510051"], ["id", 1]]
813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
814
+  (0.5ms) rollback transaction
815
+  (0.0ms) begin transaction
816
+  (0.0ms) SAVEPOINT active_record_1
817
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
818
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$ACMMa3qSYwYRsHkcMBqYiezlTtVCL968Xb9vlFn1q/MP6Uz7RieVO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.512627"], ["created_at", "2015-02-02 18:26:00.515640"], ["updated_at", "2015-02-02 18:26:00.515640"]]
819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
820
+  (0.0ms) SAVEPOINT active_record_1
821
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
822
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.517590' WHERE "accounts"."id" = ? [["id", 1]]
823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
824
+  (0.5ms) rollback transaction
825
+  (0.1ms) begin transaction
826
+  (0.0ms) SAVEPOINT active_record_1
827
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
828
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Pgt81p8nZHj7IqwqX1zYU.QjaHeu7Rgh4yuDqkBB5JRdBRwWu/hZy"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.519666"], ["created_at", "2015-02-02 18:26:00.522648"], ["updated_at", "2015-02-02 18:26:00.522648"]]
829
+  (0.1ms) RELEASE SAVEPOINT active_record_1
830
+  (0.0ms) SAVEPOINT active_record_1
831
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
832
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.524902' WHERE "accounts"."id" = ? [["id", 1]]
833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
834
+  (0.6ms) rollback transaction
835
+  (0.0ms) begin transaction
836
+  (0.1ms) SAVEPOINT active_record_1
837
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
838
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$FPfsvcN60djsLVCnB1JXuO8G8aEvNVkeDo0Uvx2k0rzzvLlQr6NcG"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.527093"], ["created_at", "2015-02-02 18:26:00.530515"], ["updated_at", "2015-02-02 18:26:00.530515"]]
839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
840
+  (0.0ms) SAVEPOINT active_record_1
841
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
842
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.532537' WHERE "accounts"."id" = ? [["id", 1]]
843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
844
+  (0.6ms) rollback transaction
845
+  (0.0ms) begin transaction
846
+  (0.0ms) SAVEPOINT active_record_1
847
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
848
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$73tlM7yr21XgCjeyRE.aCOSFJ.UCcU1ZDZWYEcGf0J1JNwfQscOWK"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.534975"], ["created_at", "2015-02-02 18:26:00.538156"], ["updated_at", "2015-02-02 18:26:00.538156"]]
849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
850
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
851
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "NTwmrhaRYbsRZCoqyCssFUgwxUNf2SFGku9VLdp5pJcr"]]
852
+  (0.0ms) SAVEPOINT active_record_1
853
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "NTwmrhaRYbsRZCoqyCssFUgwxUNf2SFGku9VLdp5pJcr"], ["auth_token_expires_at", "2015-02-03 18:26:00.541746"], ["updated_at", "2015-02-02 18:26:00.542105"], ["id", 1]]
854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
855
+  (0.6ms) rollback transaction
856
+  (0.0ms) begin transaction
857
+  (0.1ms) SAVEPOINT active_record_1
858
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
859
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$nIxvNNd.ZJPXhHzzMhriDufgr5kP8c0xeFMaZcaY29C8DwqNSwX1C"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.545023"], ["created_at", "2015-02-02 18:26:00.548612"], ["updated_at", "2015-02-02 18:26:00.548612"]]
860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
861
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
862
+  (0.5ms) rollback transaction
863
+  (0.0ms) begin transaction
864
+  (0.0ms) SAVEPOINT active_record_1
865
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
866
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$588IgZ3/HX.oLXjf4bGUkOu/xTLaR.KkXp.vwg.XIe6tmfuYrraA2"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:26:00.553494"], ["created_at", "2015-02-02 18:26:00.556600"], ["updated_at", "2015-02-02 18:26:00.556600"]]
867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
868
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
869
+  (0.4ms) rollback transaction
870
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts"
871
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
872
+  (0.1ms) begin transaction
873
+  (0.0ms) SAVEPOINT active_record_1
874
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
875
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "bWqLjtYWzycsHpvM28ZNPMoM2yd2wU8yuyj3HnCrEQzr"]]
876
+ SQL (0.9ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$7kz5IEy6pu9qJdt/oEavSOSSWfmFDT6qzphPfxwvdPFjruuaJWJnG"], ["auth_token", "bWqLjtYWzycsHpvM28ZNPMoM2yd2wU8yuyj3HnCrEQzr"], ["auth_token_expires_at", "2015-02-03 18:28:31.468759"], ["created_at", "2015-02-02 18:28:31.469083"], ["updated_at", "2015-02-02 18:28:31.469083"]]
877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
878
+ Processing by AccountsController#index as HTML
879
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
880
+  (0.5ms) rollback transaction
881
+  (0.0ms) begin transaction
882
+  (0.0ms) SAVEPOINT active_record_1
883
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
884
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "kzWWech1a7YkHC1RQQKDU2wLUjNyQonnQH6M1pzXTeQr"]]
885
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$xuBgS0uGfl9Hqg3ZnYl.e.BxV.zwFntNtU1O2Ro5S8G3bX1CTxEe6"], ["auth_token", "kzWWech1a7YkHC1RQQKDU2wLUjNyQonnQH6M1pzXTeQr"], ["auth_token_expires_at", "2015-02-03 18:28:31.479504"], ["created_at", "2015-02-02 18:28:31.479727"], ["updated_at", "2015-02-02 18:28:31.479727"]]
886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
887
+ Processing by AccountsController#show as HTML
888
+ Parameters: {"id"=>"1"}
889
+  (0.0ms) SAVEPOINT active_record_1
890
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
891
+ SQL (0.6ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.483000' WHERE "accounts"."id" = ? [["id", 1]]
892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
893
+ Completed 200 OK in 3ms (ActiveRecord: 0.9ms)
894
+  (0.5ms) rollback transaction
895
+  (0.0ms) begin transaction
896
+ Processing by AccountsController#index as HTML
897
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
898
+  (0.0ms) rollback transaction
899
+  (0.0ms) begin transaction
900
+ Processing by AccountsController#show as HTML
901
+ Parameters: {"id"=>"1"}
902
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
903
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
904
+  (0.0ms) rollback transaction
905
+  (0.0ms) begin transaction
906
+  (0.0ms) rollback transaction
907
+  (0.0ms) begin transaction
908
+  (0.0ms) SAVEPOINT active_record_1
909
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
910
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "rHkpHh9upxqM3Q2PQUqzi9FAuBdxNfsybUi6sywxqqQr"]]
911
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$K8MaQ4/0ZUnWwdVIQJeiMO7rC714Mm15KG41JQRvzYMv1IpIU1H5K"], ["auth_token", "rHkpHh9upxqM3Q2PQUqzi9FAuBdxNfsybUi6sywxqqQr"], ["auth_token_expires_at", "2015-02-03 18:28:31.495980"], ["created_at", "2015-02-02 18:28:31.496189"], ["updated_at", "2015-02-02 18:28:31.496189"]]
912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
913
+ Processing by AccountsController#show as HTML
914
+ Parameters: {"id"=>"1"}
915
+  (0.0ms) SAVEPOINT active_record_1
916
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
917
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.499854' WHERE "accounts"."id" = ? [["id", 1]]
918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
919
+ Completed 200 OK in 2ms (ActiveRecord: 0.5ms)
920
+  (0.9ms) rollback transaction
921
+  (0.0ms) begin transaction
922
+  (0.0ms) SAVEPOINT active_record_1
923
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
924
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
925
+  (0.1ms) rollback transaction
926
+  (0.0ms) begin transaction
927
+  (0.1ms) SAVEPOINT active_record_1
928
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
929
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "ovyJqyskedY6MWrq9uaQd61fG1XcteCF4th51u42JAUr"]]
930
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$OZEvexEBL4JSsO3IdXCCvO/yLM1BUhcQKbC1hYiqtXhS5akTvDTDC"], ["auth_token", "ovyJqyskedY6MWrq9uaQd61fG1XcteCF4th51u42JAUr"], ["auth_token_expires_at", "2015-02-03 18:28:31.519051"], ["created_at", "2015-02-02 18:28:31.519262"], ["updated_at", "2015-02-02 18:28:31.519262"]]
931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
932
+  (0.1ms) SAVEPOINT active_record_1
933
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
934
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
935
+  (0.5ms) rollback transaction
936
+  (0.0ms) begin transaction
937
+  (0.0ms) SAVEPOINT active_record_1
938
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
939
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
940
+  (0.0ms) rollback transaction
941
+  (0.1ms) begin transaction
942
+  (0.1ms) SAVEPOINT active_record_1
943
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
944
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
945
+  (0.0ms) rollback transaction
946
+  (0.0ms) begin transaction
947
+  (0.0ms) SAVEPOINT active_record_1
948
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
949
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
950
+  (0.0ms) rollback transaction
951
+  (0.0ms) begin transaction
952
+  (0.0ms) SAVEPOINT active_record_1
953
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
954
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "PqV6RbPp9jLD7DUNTKbbKmuPv1qJn26euiXmnPcENxor"]]
955
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.7@baz.org"], ["password_digest", "$2a$04$suYDDiPOWlrqpcQyuGQfieltoZqsBdqW5UG622dSJ4FSSo/dhq1i2"], ["auth_token_expires_at", "2015-02-03 18:28:31.539378"], ["auth_token", "PqV6RbPp9jLD7DUNTKbbKmuPv1qJn26euiXmnPcENxor"], ["created_at", "2015-02-02 18:28:31.539563"], ["updated_at", "2015-02-02 18:28:31.539563"]]
956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
957
+  (0.5ms) rollback transaction
958
+  (0.0ms) begin transaction
959
+  (0.0ms) SAVEPOINT active_record_1
960
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
961
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.8@baz.org"], ["password_digest", "$2a$04$UpsGLnXNzCNZy4zbvMh0PO0XF.tN/pakA8owkMtW2K6LL1OsyyrLW"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.541817"], ["created_at", "2015-02-02 18:28:31.544728"], ["updated_at", "2015-02-02 18:28:31.544728"]]
962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
963
+  (0.4ms) rollback transaction
964
+  (0.0ms) begin transaction
965
+  (0.0ms) SAVEPOINT active_record_1
966
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
967
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$dziBzs7NYhtcEPaDxWL4getf/oBW6RH5nvYRMvV5MLnckgaBO8.8e"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.547064"], ["created_at", "2015-02-02 18:28:31.549958"], ["updated_at", "2015-02-02 18:28:31.549958"]]
968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
969
+  (0.5ms) rollback transaction
970
+  (0.0ms) begin transaction
971
+  (0.0ms) SAVEPOINT active_record_1
972
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
973
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$jAZ2/U4r5SXnwF2CYooK2uhSXOsV7nt3HvI7k2GTQuPXqRUQQF09i"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.552237"], ["created_at", "2015-02-02 18:28:31.554980"], ["updated_at", "2015-02-02 18:28:31.554980"]]
974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
975
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "dqoGW2UpdMTzrqdYzvt74iYn3EyBiWXQ7ciQgYQXBxQr"]]
976
+  (0.4ms) rollback transaction
977
+  (0.0ms) begin transaction
978
+  (0.1ms) SAVEPOINT active_record_1
979
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
980
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$lh78sMQaI.gU3otdvZi22OuYLwwADBmI5UJZRk.alXs3EMxb9/i7a"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.557977"], ["created_at", "2015-02-02 18:28:31.561196"], ["updated_at", "2015-02-02 18:28:31.561196"]]
981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
982
+  (0.4ms) rollback transaction
983
+  (0.0ms) begin transaction
984
+  (0.0ms) SAVEPOINT active_record_1
985
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
986
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$CBQRIE1ZEeBGCkzDJsuZ1eZ5JR8ui9WtLmX7S4NyC5lJrULzmwhfO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.563695"], ["created_at", "2015-02-02 18:28:31.566696"], ["updated_at", "2015-02-02 18:28:31.566696"]]
987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
988
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "EzwySuqLTf1nU2LwkNH3DzJipBf4JDQe5woQiXVxfqMr"]]
989
+  (0.4ms) rollback transaction
990
+  (0.0ms) begin transaction
991
+  (0.1ms) SAVEPOINT active_record_1
992
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
993
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.13@baz.org"], ["password_digest", "$2a$04$a/hfa/M9XlgpqgwXmluV5eGKqmMCfI8QafUy97NSHrBMBFdAZwu/m"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.571857"], ["created_at", "2015-02-02 18:28:31.575114"], ["updated_at", "2015-02-02 18:28:31.575114"]]
994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
995
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Ne2upxZAoMpDJLyZdKRBZRgHZKL1f8qnSPDXV4h84Mor"]]
996
+  (0.4ms) rollback transaction
997
+  (0.1ms) begin transaction
998
+  (0.0ms) SAVEPOINT active_record_1
999
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
1000
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.14@baz.org"], ["password_digest", "$2a$04$JY7NSClpGa0obJL.sAToTOAiU1QGzb42J1Hw9EiSilxh3lvZbZuLO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.586725"], ["created_at", "2015-02-02 18:28:31.589710"], ["updated_at", "2015-02-02 18:28:31.589710"]]
1001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1002
+  (0.3ms) rollback transaction
1003
+  (0.1ms) begin transaction
1004
+  (0.1ms) SAVEPOINT active_record_1
1005
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
1006
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.15@baz.org"], ["password_digest", "$2a$04$wJxglZHj4UNxRYfzLO57VOkiwkemkdfWcrL4esoLR/vgSd0I4Yh.2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.592032"], ["created_at", "2015-02-02 18:28:31.595560"], ["updated_at", "2015-02-02 18:28:31.595560"]]
1007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1008
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "EUpZvkSUNJxScAMHERrm6Pzd4GQEjeGex7Zp3xyijXQr"]]
1009
+  (0.0ms) SAVEPOINT active_record_1
1010
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "EUpZvkSUNJxScAMHERrm6Pzd4GQEjeGex7Zp3xyijXQr"], ["auth_token_expires_at", "2015-02-03 18:28:31.597587"], ["updated_at", "2015-02-02 18:28:31.597990"], ["id", 1]]
1011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1012
+  (0.6ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+  (0.1ms) SAVEPOINT active_record_1
1015
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
1016
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.16@baz.org"], ["password_digest", "$2a$04$BpizvxD/Kq8UVg.Bw7McvenbSJF7nxfdc0LhDJUDdNpMjVmfp8tsy"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.601194"], ["created_at", "2015-02-02 18:28:31.604401"], ["updated_at", "2015-02-02 18:28:31.604401"]]
1017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1018
+  (0.4ms) rollback transaction
1019
+  (0.0ms) begin transaction
1020
+  (0.1ms) SAVEPOINT active_record_1
1021
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
1022
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$Eej7T94bTTOk6AvtiRw65OhLX4/0dEAinV5ofH9rmfco.Dez5rzf2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.606736"], ["created_at", "2015-02-02 18:28:31.610117"], ["updated_at", "2015-02-02 18:28:31.610117"]]
1023
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1024
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "LzpuzinjwSzed9zyYFyFSqqj69X1gptj8EqvXzKyppsr"]]
1025
+  (0.0ms) SAVEPOINT active_record_1
1026
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "LzpuzinjwSzed9zyYFyFSqqj69X1gptj8EqvXzKyppsr"], ["auth_token_expires_at", "2015-02-03 18:28:31.611973"], ["updated_at", "2015-02-02 18:28:31.612357"], ["id", 1]]
1027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1028
+  (0.6ms) rollback transaction
1029
+  (0.0ms) begin transaction
1030
+  (0.1ms) SAVEPOINT active_record_1
1031
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
1032
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.18@baz.org"], ["password_digest", "$2a$04$M/jfw43isWIt8MK458ahEO2aZF3JxKSSsPRz5PIQ2MQ8nUqUij3gS"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.614733"], ["created_at", "2015-02-02 18:28:31.617902"], ["updated_at", "2015-02-02 18:28:31.617902"]]
1033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "QDgeZR9ZYcXsjpgrfQdGCSwhkXTpqaGZZmVAAA7iH9Mr"]]
1035
+  (0.3ms) rollback transaction
1036
+  (0.0ms) begin transaction
1037
+  (0.0ms) SAVEPOINT active_record_1
1038
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
1039
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.19@baz.org"], ["password_digest", "$2a$04$QyAGDjb6/q6eHVC8XgrOIueE4WVBkBPE7d3kZ8VxoOFZbTzmZAyEa"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:29:31.621546"], ["created_at", "2015-02-02 18:28:31.624407"], ["updated_at", "2015-02-02 18:28:31.624407"]]
1040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1041
+  (0.4ms) rollback transaction
1042
+  (0.0ms) begin transaction
1043
+  (0.1ms) SAVEPOINT active_record_1
1044
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
1045
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$9X4JDOVd.D02SrJbuk2iyemZkatTDozyuFjwlOy1SfSAMFV6ItjbS"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:27:31.626549"], ["created_at", "2015-02-02 18:28:31.629499"], ["updated_at", "2015-02-02 18:28:31.629499"]]
1046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1047
+  (0.4ms) rollback transaction
1048
+  (0.0ms) begin transaction
1049
+  (0.0ms) SAVEPOINT active_record_1
1050
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
1051
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$g6SZXQ7oUy50fmOui/dj1eTG2fKHbUgTr3omMBg6bOxn08OXG/X2e"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.631872"], ["created_at", "2015-02-02 18:28:31.634906"], ["updated_at", "2015-02-02 18:28:31.634906"]]
1052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1053
+  (0.5ms) rollback transaction
1054
+  (0.0ms) begin transaction
1055
+  (0.1ms) SAVEPOINT active_record_1
1056
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
1057
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$y7reb4clhJBxqd03gefLE.Y7JhxmluSCQvH0ndcNXqHnm1YqhuSbq"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:28:31.637269"], ["created_at", "2015-02-02 18:28:31.640255"], ["updated_at", "2015-02-02 18:28:31.640255"]]
1058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1059
+  (0.6ms) rollback transaction
1060
+  (0.0ms) begin transaction
1061
+  (0.0ms) SAVEPOINT active_record_1
1062
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1063
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$JFyGPAXpMWEDoytErExvaO7NBfOnkT8gB/ZYXmSMq.gu12NjBd9ga"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.644324"], ["created_at", "2015-02-02 18:28:31.647227"], ["updated_at", "2015-02-02 18:28:31.647227"]]
1064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1065
+  (0.5ms) rollback transaction
1066
+  (0.0ms) begin transaction
1067
+  (0.0ms) SAVEPOINT active_record_1
1068
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1069
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$VkB9lmyiQNpL/eU52G.oPuHcFf8EnRRq.0tyR3dtbGDfB8RSr2ZT6"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.649552"], ["created_at", "2015-02-02 18:28:31.658802"], ["updated_at", "2015-02-02 18:28:31.658802"]]
1070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1071
+  (0.5ms) rollback transaction
1072
+  (0.0ms) begin transaction
1073
+  (0.1ms) SAVEPOINT active_record_1
1074
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1075
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$/ksXeX9iqj6yYA7dY6qpge.NfS6cC19Du4eKwa/.2C87.NY/mHnlm"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.661669"], ["created_at", "2015-02-02 18:28:31.664828"], ["updated_at", "2015-02-02 18:28:31.664828"]]
1076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077
+  (0.1ms) SAVEPOINT active_record_1
1078
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1079
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.670208' WHERE "accounts"."id" = ? [["id", 1]]
1080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1081
+  (0.8ms) rollback transaction
1082
+  (0.0ms) begin transaction
1083
+  (0.0ms) SAVEPOINT active_record_1
1084
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1085
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$6/x3DIyogdyjbM1SwoT69ODpP2Wjbg7J/gVW9gvhpTL/15yAM5.dG"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.672910"], ["created_at", "2015-02-02 18:28:31.676042"], ["updated_at", "2015-02-02 18:28:31.676042"]]
1086
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1087
+  (0.0ms) SAVEPOINT active_record_1
1088
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1089
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.678305' WHERE "accounts"."id" = ? [["id", 1]]
1090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1091
+  (0.8ms) rollback transaction
1092
+  (0.0ms) begin transaction
1093
+  (0.0ms) SAVEPOINT active_record_1
1094
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1095
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$.9JaM/BUfIbVlX99sIiJAug/vI9CbexDj2tjuYOl0agzF3V23cxJK"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:28:31.681194"], ["created_at", "2015-02-02 18:28:31.684695"], ["updated_at", "2015-02-02 18:28:31.684695"]]
1096
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1097
+  (0.1ms) SAVEPOINT active_record_1
1098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1099
+  (0.4ms) rollback transaction
1100
+  (0.1ms) begin transaction
1101
+  (0.0ms) SAVEPOINT active_record_1
1102
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1103
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$CdFr8x5kJbVwu539TucWCO.r5rLs7kO.SB3t72KSXBzy4oR8dlaPK"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:28:31.688657"], ["created_at", "2015-02-02 18:28:31.692012"], ["updated_at", "2015-02-02 18:28:31.692012"]]
1104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1105
+  (0.0ms) SAVEPOINT active_record_1
1106
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1107
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "3f7yfABqvQzoDYdY63qv6eV8R8YVJ9Tw9YEksQ2v9KAr"]]
1108
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "3f7yfABqvQzoDYdY63qv6eV8R8YVJ9Tw9YEksQ2v9KAr"], ["auth_token_expires_at", "2015-02-03 18:28:31.694925"], ["updated_at", "2015-02-02 18:28:31.695220"], ["id", 1]]
1109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1110
+  (0.6ms) rollback transaction
1111
+  (0.1ms) begin transaction
1112
+  (0.0ms) SAVEPOINT active_record_1
1113
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1114
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$.AHfHv3XZhesdY3j5DAQm.Becy7Sh1EXOtA418YNQMD3WKvZCR0Ku"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.698131"], ["created_at", "2015-02-02 18:28:31.701468"], ["updated_at", "2015-02-02 18:28:31.701468"]]
1115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1116
+  (0.0ms) SAVEPOINT active_record_1
1117
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1118
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.704137' WHERE "accounts"."id" = ? [["id", 1]]
1119
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1120
+  (0.6ms) rollback transaction
1121
+  (0.0ms) begin transaction
1122
+  (0.0ms) SAVEPOINT active_record_1
1123
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1124
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$pd.SxAJa8EC3Q6nTIAHjHOjvhVkeh.xbft6KGbY3ZlvolM7JQge5."], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.706452"], ["created_at", "2015-02-02 18:28:31.709573"], ["updated_at", "2015-02-02 18:28:31.709573"]]
1125
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1126
+  (0.0ms) SAVEPOINT active_record_1
1127
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1128
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.711636' WHERE "accounts"."id" = ? [["id", 1]]
1129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1130
+  (0.6ms) rollback transaction
1131
+  (0.1ms) begin transaction
1132
+  (0.0ms) SAVEPOINT active_record_1
1133
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1134
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$NG8qM.FQkWXCcD3hhpkxYuuCj8Vlmww4G0yRtvs7HJaGtjo67w55a"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.714099"], ["created_at", "2015-02-02 18:28:31.717372"], ["updated_at", "2015-02-02 18:28:31.717372"]]
1135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1136
+  (0.0ms) SAVEPOINT active_record_1
1137
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1138
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.719431' WHERE "accounts"."id" = ? [["id", 1]]
1139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1140
+  (0.9ms) rollback transaction
1141
+  (0.0ms) begin transaction
1142
+  (0.0ms) SAVEPOINT active_record_1
1143
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1144
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$xfpHcSAGULHK1191SuRluObIivy6L6FB.NRPpVvhsYLktqI8XdZ7e"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.722091"], ["created_at", "2015-02-02 18:28:31.725371"], ["updated_at", "2015-02-02 18:28:31.725371"]]
1145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1146
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1147
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "TM2EVP3tx75swd4t23hUsDUJFCBHu4ST6Wjz8rcRPF4r"]]
1148
+  (0.0ms) SAVEPOINT active_record_1
1149
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "TM2EVP3tx75swd4t23hUsDUJFCBHu4ST6Wjz8rcRPF4r"], ["auth_token_expires_at", "2015-02-03 18:28:31.729635"], ["updated_at", "2015-02-02 18:28:31.730051"], ["id", 1]]
1150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1151
+  (0.5ms) rollback transaction
1152
+  (0.1ms) begin transaction
1153
+  (0.0ms) SAVEPOINT active_record_1
1154
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1155
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$y/bbvqsjREIBS/9vre9TC.pkSiMHiUMJa0Pd8TrSlGLx4b030nKju"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.732986"], ["created_at", "2015-02-02 18:28:31.736258"], ["updated_at", "2015-02-02 18:28:31.736258"]]
1156
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1157
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
1158
+  (0.4ms) rollback transaction
1159
+  (0.0ms) begin transaction
1160
+  (0.0ms) SAVEPOINT active_record_1
1161
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1162
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$V.wNwdznRFsTfJ7obcO1dOBBjrNORWCJiPbgzFDxjEDquhuW8k.Rq"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:28:31.741143"], ["created_at", "2015-02-02 18:28:31.744315"], ["updated_at", "2015-02-02 18:28:31.744315"]]
1163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1164
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1165
+  (0.5ms) rollback transaction
1166
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1167
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1168
+  (0.1ms) begin transaction
1169
+  (0.1ms) SAVEPOINT active_record_1
1170
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1171
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$wtY5rDoxkOgBbarMtOl75eGI7prqwRfRZ5MazmLalkG4JkgsKCNJS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:30:05.089798"], ["created_at", "2015-02-02 18:30:05.106866"], ["updated_at", "2015-02-02 18:30:05.106866"]]
1172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1173
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1174
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1175
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1176
+  (0.5ms) rollback transaction
1177
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1178
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1179
+  (0.1ms) begin transaction
1180
+  (0.1ms) SAVEPOINT active_record_1
1181
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1182
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Fh50x0AqMj4rQHJ.8Rg94Oj0v8HONwQu6g04YZ4XWjPhiXk6hb0nq"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:34:50.558702"], ["created_at", "2015-02-02 18:34:50.571310"], ["updated_at", "2015-02-02 18:34:50.571310"]]
1183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1184
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1185
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1186
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1187
+  (0.5ms) rollback transaction
1188
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1189
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1190
+  (0.1ms) begin transaction
1191
+  (0.0ms) SAVEPOINT active_record_1
1192
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1193
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$YYZjxZF/9wd1QzDYBo01K.OWCUsclf5Hzm4alKKGpArQ19mPNV5ra"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:35:02.552753"], ["created_at", "2015-02-02 18:35:02.565161"], ["updated_at", "2015-02-02 18:35:02.565161"]]
1194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1195
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1196
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1197
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1198
+  (1.9ms) rollback transaction
1199
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts"
1200
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1201
+  (0.1ms) begin transaction
1202
+  (0.1ms) SAVEPOINT active_record_1
1203
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1204
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$xhsg7rUZkd.LpBXu5jqEC.DIMgpuaekDqbXzfuNJ1k8ZYXWwf0LSO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:35:26.883528"], ["created_at", "2015-02-02 18:35:26.896012"], ["updated_at", "2015-02-02 18:35:26.896012"]]
1205
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1206
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1207
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1208
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1209
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1210
+  (0.6ms) rollback transaction
1211
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1212
+  (0.1ms) begin transaction
1213
+  (0.1ms) SAVEPOINT active_record_1
1214
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1215
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$V9/hULFSRUA0gYtaxOiqs..nG5tJTfyHOKZ3Fygdhc6/oRd.97xIm"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:38:18.590617"], ["created_at", "2015-02-02 18:38:18.605618"], ["updated_at", "2015-02-02 18:38:18.605618"]]
1216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1217
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1218
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
1219
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1220
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1221
+  (1.5ms) rollback transaction
1222
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1223
+  (0.1ms) begin transaction
1224
+  (0.1ms) SAVEPOINT active_record_1
1225
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1226
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$4XXTAK1cIGh9KqVHGt6DYuAA9JvjImsWNlx3hqk/P4Swn5/Us6hD2"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:40:50.493400"], ["created_at", "2015-02-02 18:40:50.512217"], ["updated_at", "2015-02-02 18:40:50.512217"]]
1227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1228
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1229
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1230
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1231
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1232
+  (0.4ms) rollback transaction
1233
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1234
+  (0.1ms) begin transaction
1235
+  (0.1ms) SAVEPOINT active_record_1
1236
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1237
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$7LwdcGzgjY69jZz6z1WxFubAKJyd3TwD7PojHmCd0riYGscyTQyl6"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:44:00.577976"], ["created_at", "2015-02-02 18:44:00.590912"], ["updated_at", "2015-02-02 18:44:00.590912"]]
1238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1239
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1240
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1241
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1242
+  (0.4ms) rollback transaction
1243
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1244
+  (0.1ms) begin transaction
1245
+  (0.1ms) SAVEPOINT active_record_1
1246
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1247
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$hoKpmAbUfPqtP5CXa6.3e.s2TYQXEL6ta7PVOnCKcAEEQdS2zgYQW"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:44:17.772448"], ["created_at", "2015-02-02 18:44:17.785577"], ["updated_at", "2015-02-02 18:44:17.785577"]]
1248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1249
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1250
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1251
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1252
+  (1.8ms) rollback transaction
1253
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1254
+  (0.1ms) begin transaction
1255
+  (0.1ms) SAVEPOINT active_record_1
1256
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1257
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$qn0FK8R4JJoGZ2ztfr3wB.GAdVyzDmFDOsIlBg4pNZrrvj.8oDgK2"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:44:30.142612"], ["created_at", "2015-02-02 18:44:30.155695"], ["updated_at", "2015-02-02 18:44:30.155695"]]
1258
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1259
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1260
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil')
1261
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1262
+  (0.6ms) rollback transaction
1263
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1264
+  (0.1ms) begin transaction
1265
+  (0.1ms) SAVEPOINT active_record_1
1266
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1267
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$VOSx784s8k/p0MVeoETVQuhtzKhp87evrd4A5zejafcv0CujMH.oy"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:45:40.812399"], ["created_at", "2015-02-02 18:45:40.825232"], ["updated_at", "2015-02-02 18:45:40.825232"]]
1268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1269
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1270
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts"
1271
+  (1.7ms) rollback transaction
1272
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1273
+  (0.1ms) begin transaction
1274
+  (0.1ms) SAVEPOINT active_record_1
1275
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1276
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$QRnpru8EV9ZgU6w7SY62q.yKMLKpm1yZpkhebmm2ts9nAW9x742Iy"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:45:59.020718"], ["created_at", "2015-02-02 18:45:59.033132"], ["updated_at", "2015-02-02 18:45:59.033132"]]
1277
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1278
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1279
+  (1.9ms) rollback transaction
1280
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1281
+  (0.1ms) begin transaction
1282
+  (0.1ms) SAVEPOINT active_record_1
1283
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
1284
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1285
+  (0.1ms) rollback transaction
1286
+  (0.0ms) begin transaction
1287
+  (0.0ms) SAVEPOINT active_record_1
1288
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1289
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BM5wBqfqmjkNh5AxUzd1xVWzj2ECXVGphmrYPNxTygQr"]]
1290
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$0OG878aEynMmcljX9khQVO1jxMUybSjYntZp925HKWhFDHuUm8a7."], ["auth_token", "BM5wBqfqmjkNh5AxUzd1xVWzj2ECXVGphmrYPNxTygQr"], ["auth_token_expires_at", "2015-02-03 18:46:27.457107"], ["created_at", "2015-02-02 18:46:27.457438"], ["updated_at", "2015-02-02 18:46:27.457438"]]
1291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1292
+  (0.0ms) SAVEPOINT active_record_1
1293
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1294
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1295
+  (0.5ms) rollback transaction
1296
+  (0.0ms) begin transaction
1297
+  (0.0ms) SAVEPOINT active_record_1
1298
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
1299
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1300
+  (0.0ms) rollback transaction
1301
+  (0.0ms) begin transaction
1302
+  (0.0ms) SAVEPOINT active_record_1
1303
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
1304
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1305
+  (0.1ms) rollback transaction
1306
+  (0.0ms) begin transaction
1307
+  (0.1ms) SAVEPOINT active_record_1
1308
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
1309
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1310
+  (0.1ms) rollback transaction
1311
+  (0.0ms) begin transaction
1312
+  (0.0ms) SAVEPOINT active_record_1
1313
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
1314
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "6N3mKV5NzpRH9eQZqDsqSX2WrgMniqpw9Ah9grNqJkUr"]]
1315
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.4@baz.org"], ["password_digest", "$2a$04$gpN26NwHe3.I9OB0seiZm.ACRLOtfYWkWpF6nTn3q7aCd7MDfPmam"], ["auth_token_expires_at", "2015-02-03 18:46:27.478359"], ["auth_token", "6N3mKV5NzpRH9eQZqDsqSX2WrgMniqpw9Ah9grNqJkUr"], ["created_at", "2015-02-02 18:46:27.478533"], ["updated_at", "2015-02-02 18:46:27.478533"]]
1316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1317
+  (0.5ms) rollback transaction
1318
+  (0.0ms) begin transaction
1319
+  (0.0ms) SAVEPOINT active_record_1
1320
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
1321
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.5@baz.org"], ["password_digest", "$2a$04$YHyIGuHuViy1S9E1CU2LVOnnY4Z29AkpdpMqhs49ZiNH2XAqkmDyS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.480882"], ["created_at", "2015-02-02 18:46:27.483743"], ["updated_at", "2015-02-02 18:46:27.483743"]]
1322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1323
+  (0.4ms) rollback transaction
1324
+  (0.0ms) begin transaction
1325
+  (0.0ms) SAVEPOINT active_record_1
1326
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
1327
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.6@baz.org"], ["password_digest", "$2a$04$sTvOsKxdXfYvGAjp4HsIR.PNUzcqeL36QtDB7FkLr9TsHplFh2cxy"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.487685"], ["created_at", "2015-02-02 18:46:27.491151"], ["updated_at", "2015-02-02 18:46:27.491151"]]
1328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1329
+  (0.4ms) rollback transaction
1330
+  (0.0ms) begin transaction
1331
+  (0.0ms) SAVEPOINT active_record_1
1332
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
1333
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.7@baz.org"], ["password_digest", "$2a$04$j1nkqivjGl1yGjpjutS2gOqqyQfCjz8LXdt0SV5i4j3Kmotcxd4LG"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.493463"], ["created_at", "2015-02-02 18:46:27.496450"], ["updated_at", "2015-02-02 18:46:27.496450"]]
1334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1335
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Q9dkkwxJE48fs5TfiT8Ja1SqQjbm7LvXUYmqAk7achwr"]]
1336
+  (0.4ms) rollback transaction
1337
+  (0.0ms) begin transaction
1338
+  (0.1ms) SAVEPOINT active_record_1
1339
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
1340
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.8@baz.org"], ["password_digest", "$2a$04$nnl/FLbLIUSYX3vsnp1TCuJfnmFRo99faUBQ643dvqw0cCcomj922"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.499507"], ["created_at", "2015-02-02 18:46:27.503087"], ["updated_at", "2015-02-02 18:46:27.503087"]]
1341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1342
+  (0.4ms) rollback transaction
1343
+  (0.0ms) begin transaction
1344
+  (0.0ms) SAVEPOINT active_record_1
1345
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
1346
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$19l2BFFVkGXzObzVSHTR1OK/Y.clqv5vFXGG4LBTYaWarBkQax80C"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.505518"], ["created_at", "2015-02-02 18:46:27.508636"], ["updated_at", "2015-02-02 18:46:27.508636"]]
1347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1348
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "FWASFQH8RLYqbCMQUHdUsxHaanDdJsFj7GtBGDs7PCcr"]]
1349
+  (0.5ms) rollback transaction
1350
+  (0.0ms) begin transaction
1351
+  (0.1ms) SAVEPOINT active_record_1
1352
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
1353
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$w78jXlrl1gfx41uS2nbsd.HcCzliM0aX/.X0HRndrkHd21mWVgfPC"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.513973"], ["created_at", "2015-02-02 18:46:27.517281"], ["updated_at", "2015-02-02 18:46:27.517281"]]
1354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1355
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "yV9m1J5d8ZGRho2GSpzAqbtnQxpt3ptPAHxuS9fbngYr"]]
1356
+  (0.7ms) rollback transaction
1357
+  (0.0ms) begin transaction
1358
+  (0.0ms) SAVEPOINT active_record_1
1359
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
1360
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$IhvWdymk0gFgSSNrmp75T.DvfBepLohRLyZsh.Q8uAP1F3x9LD/u2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.529306"], ["created_at", "2015-02-02 18:46:27.532470"], ["updated_at", "2015-02-02 18:46:27.532470"]]
1361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1362
+  (0.4ms) rollback transaction
1363
+  (0.1ms) begin transaction
1364
+  (0.0ms) SAVEPOINT active_record_1
1365
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
1366
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$rh0IfJtZT5dFkWLOcixNG.mnGwtKSKmBIa6b52AdItUeo.UVv5cGW"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.534802"], ["created_at", "2015-02-02 18:46:27.537770"], ["updated_at", "2015-02-02 18:46:27.537770"]]
1367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1368
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "v3uKtNNxZet7JprTkd1p83pjdDadpHibYwEqsZwqSsEr"]]
1369
+  (0.0ms) SAVEPOINT active_record_1
1370
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "v3uKtNNxZet7JprTkd1p83pjdDadpHibYwEqsZwqSsEr"], ["auth_token_expires_at", "2015-02-03 18:46:27.539533"], ["updated_at", "2015-02-02 18:46:27.539922"], ["id", 1]]
1371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1372
+  (0.6ms) rollback transaction
1373
+  (0.0ms) begin transaction
1374
+  (0.0ms) SAVEPOINT active_record_1
1375
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
1376
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.13@baz.org"], ["password_digest", "$2a$04$psNlpn2xFz/CtJ2vZox7eOm9wKW/FbIbYEFLFj9a2wYQ5Ls4UJoLa"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.542967"], ["created_at", "2015-02-02 18:46:27.545950"], ["updated_at", "2015-02-02 18:46:27.545950"]]
1377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1378
+  (0.4ms) rollback transaction
1379
+  (0.0ms) begin transaction
1380
+  (0.0ms) SAVEPOINT active_record_1
1381
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
1382
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.14@baz.org"], ["password_digest", "$2a$04$cTbjfcy6D3S1zOrB7vdyyOm.Qz0FoLanILzrrOo1tGJj2fVUIs9rS"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.548088"], ["created_at", "2015-02-02 18:46:27.550765"], ["updated_at", "2015-02-02 18:46:27.550765"]]
1383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1384
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Z1KHLjSV4Dagi9ZcZZDsptgV7UxjvKQzsLKPqgzPC1kr"]]
1385
+  (0.0ms) SAVEPOINT active_record_1
1386
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "Z1KHLjSV4Dagi9ZcZZDsptgV7UxjvKQzsLKPqgzPC1kr"], ["auth_token_expires_at", "2015-02-03 18:46:27.552753"], ["updated_at", "2015-02-02 18:46:27.553177"], ["id", 1]]
1387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1388
+  (0.6ms) rollback transaction
1389
+  (0.1ms) begin transaction
1390
+  (0.0ms) SAVEPOINT active_record_1
1391
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
1392
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.15@baz.org"], ["password_digest", "$2a$04$ZfKEY/1FsZVwRiDMVGMN2etGNAXLLozfS5uSF2Jx8gxNNalBR4dYe"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.555608"], ["created_at", "2015-02-02 18:46:27.558516"], ["updated_at", "2015-02-02 18:46:27.558516"]]
1393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1394
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "9xsk8bAuPhvVsH1LkJydVaKazjvyppe9f1z65xV6WA4r"]]
1395
+  (0.5ms) rollback transaction
1396
+  (0.0ms) begin transaction
1397
+  (0.0ms) SAVEPOINT active_record_1
1398
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
1399
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.16@baz.org"], ["password_digest", "$2a$04$4TRZxdO2xDjw6hOSRtnAdejhwmZ5kZBrz0.nSt.Ta7Z4fU2vc.opW"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:47:27.562098"], ["created_at", "2015-02-02 18:46:27.564909"], ["updated_at", "2015-02-02 18:46:27.564909"]]
1400
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1401
+  (0.5ms) rollback transaction
1402
+  (0.0ms) begin transaction
1403
+  (0.0ms) SAVEPOINT active_record_1
1404
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
1405
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$Gvsxid5tZ5A2tZKqoVFd.uIjiPhnHBSZ6Q.6EkrUh.9C.wX/kRNoS"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:45:27.567581"], ["created_at", "2015-02-02 18:46:27.570388"], ["updated_at", "2015-02-02 18:46:27.570388"]]
1406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1407
+  (0.4ms) rollback transaction
1408
+  (0.0ms) begin transaction
1409
+  (0.0ms) SAVEPOINT active_record_1
1410
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
1411
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.18@baz.org"], ["password_digest", "$2a$04$V82H.N1tO3WAtQXhMPFZOOldAPsckcsV6ZUyOOZQEAKiSLJYj5Qm."], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.572595"], ["created_at", "2015-02-02 18:46:27.575364"], ["updated_at", "2015-02-02 18:46:27.575364"]]
1412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1413
+  (0.4ms) rollback transaction
1414
+  (0.0ms) begin transaction
1415
+  (0.0ms) SAVEPOINT active_record_1
1416
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
1417
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.19@baz.org"], ["password_digest", "$2a$04$yMy970VWQP9teW0NxUcime77OP3M92ghI3aHj8L4UvSolXKeVfewe"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:27.577570"], ["created_at", "2015-02-02 18:46:27.580374"], ["updated_at", "2015-02-02 18:46:27.580374"]]
1418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1419
+  (0.4ms) rollback transaction
1420
+  (0.0ms) begin transaction
1421
+  (0.0ms) SAVEPOINT active_record_1
1422
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1423
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$28N4fW.E9cnfkV4aqHnkGOtQ3u5QJ4kK7qk0p6KFulYgVXKSFnPRe"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.583998"], ["created_at", "2015-02-02 18:46:27.587507"], ["updated_at", "2015-02-02 18:46:27.587507"]]
1424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1425
+  (0.4ms) rollback transaction
1426
+  (0.1ms) begin transaction
1427
+  (0.1ms) SAVEPOINT active_record_1
1428
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1429
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$VypuT3GiCLCwnPYkL5GwU.no4lyZ3bqZPKe2KEHWMJOBv/E4VZ5jS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.590166"], ["created_at", "2015-02-02 18:46:27.593189"], ["updated_at", "2015-02-02 18:46:27.593189"]]
1430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1431
+  (0.3ms) rollback transaction
1432
+  (0.0ms) begin transaction
1433
+  (0.1ms) SAVEPOINT active_record_1
1434
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1435
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$IRz89JqQld1ByKJoP3lkNOKs3cI7upzYBHW7ziQJUOUw3JGAnTsGO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.595463"], ["created_at", "2015-02-02 18:46:27.598381"], ["updated_at", "2015-02-02 18:46:27.598381"]]
1436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1437
+  (0.1ms) SAVEPOINT active_record_1
1438
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1439
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.604207' WHERE "accounts"."id" = ? [["id", 1]]
1440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1441
+  (0.7ms) rollback transaction
1442
+  (0.1ms) begin transaction
1443
+  (0.0ms) SAVEPOINT active_record_1
1444
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1445
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Ly3xuWAHD1Q5zixjfdFKi.TbToUGJSQp15obth2veSxaynFLQt1.i"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.606803"], ["created_at", "2015-02-02 18:46:27.609861"], ["updated_at", "2015-02-02 18:46:27.609861"]]
1446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1447
+  (0.0ms) SAVEPOINT active_record_1
1448
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1449
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.612367' WHERE "accounts"."id" = ? [["id", 1]]
1450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1451
+  (0.9ms) rollback transaction
1452
+  (0.0ms) begin transaction
1453
+  (0.0ms) SAVEPOINT active_record_1
1454
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1455
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$c4C8zT023ZnXW3ibqZzLEuio.iBQ3396uunJSeb1DJdyMsTFINL4y"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:46:27.615051"], ["created_at", "2015-02-02 18:46:27.618075"], ["updated_at", "2015-02-02 18:46:27.618075"]]
1456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1457
+  (0.0ms) SAVEPOINT active_record_1
1458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1459
+  (0.4ms) rollback transaction
1460
+  (0.0ms) begin transaction
1461
+  (0.0ms) SAVEPOINT active_record_1
1462
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1463
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$nQA5Sdr63unJX4sdFXfqt.CG40FeZtJLBo/9ixN1uU6iKkA1DxbyS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:46:27.621126"], ["created_at", "2015-02-02 18:46:27.624154"], ["updated_at", "2015-02-02 18:46:27.624154"]]
1464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1465
+  (0.0ms) SAVEPOINT active_record_1
1466
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1467
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "PEuBUFgf3pcAVm7Rrn2NM37ngEKTiU16CNBbXSSxpGEr"]]
1468
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "PEuBUFgf3pcAVm7Rrn2NM37ngEKTiU16CNBbXSSxpGEr"], ["auth_token_expires_at", "2015-02-03 18:46:27.626658"], ["updated_at", "2015-02-02 18:46:27.626998"], ["id", 1]]
1469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1470
+  (0.8ms) rollback transaction
1471
+  (0.0ms) begin transaction
1472
+  (0.0ms) SAVEPOINT active_record_1
1473
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1474
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$huBdVCKELs4wd1YAFbIIN.i1kJKU1o5sa9JAmyirh5C9onrR6z2Iu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.629910"], ["created_at", "2015-02-02 18:46:27.638815"], ["updated_at", "2015-02-02 18:46:27.638815"]]
1475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1476
+  (0.0ms) SAVEPOINT active_record_1
1477
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1478
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.640813' WHERE "accounts"."id" = ? [["id", 1]]
1479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1480
+  (0.5ms) rollback transaction
1481
+  (0.0ms) begin transaction
1482
+  (0.0ms) SAVEPOINT active_record_1
1483
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1484
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$lzLGTOFOrI2aH85fy1yglecl4W5PQzc5yzMk4a0UcQUTMFEUWsCxu"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.642969"], ["created_at", "2015-02-02 18:46:27.645960"], ["updated_at", "2015-02-02 18:46:27.645960"]]
1485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1486
+  (0.0ms) SAVEPOINT active_record_1
1487
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1488
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.647706' WHERE "accounts"."id" = ? [["id", 1]]
1489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1490
+  (0.4ms) rollback transaction
1491
+  (0.0ms) begin transaction
1492
+  (0.1ms) SAVEPOINT active_record_1
1493
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1494
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$r/N030L77WIYzqpoPoA7HO.ABDauiEOwDhwqiE.9uki2CF6eSrqwy"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.649702"], ["created_at", "2015-02-02 18:46:27.653286"], ["updated_at", "2015-02-02 18:46:27.653286"]]
1495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1496
+  (0.0ms) SAVEPOINT active_record_1
1497
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1498
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.655288' WHERE "accounts"."id" = ? [["id", 1]]
1499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1500
+  (0.7ms) rollback transaction
1501
+  (0.0ms) begin transaction
1502
+  (0.1ms) SAVEPOINT active_record_1
1503
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1504
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$k3YXzc5x2rFQppCqd0NASucRZ1Lnb0aFkGowo53lCL.KUIRUgQf3y"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.657616"], ["created_at", "2015-02-02 18:46:27.660932"], ["updated_at", "2015-02-02 18:46:27.660932"]]
1505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1506
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1507
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "s6waqW6nXhBFVxFbxi9stGZvdxdDqr6AXgc1Lu3z45kr"]]
1508
+  (0.0ms) SAVEPOINT active_record_1
1509
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "s6waqW6nXhBFVxFbxi9stGZvdxdDqr6AXgc1Lu3z45kr"], ["auth_token_expires_at", "2015-02-03 18:46:27.664884"], ["updated_at", "2015-02-02 18:46:27.665382"], ["id", 1]]
1510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1511
+  (0.8ms) rollback transaction
1512
+  (0.0ms) begin transaction
1513
+  (0.0ms) SAVEPOINT active_record_1
1514
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1515
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Bplio85y0ujDpgQY6j7O3OA6HsSqWgb9GfhBd1ee5CLlUIzP0DbDG"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.668317"], ["created_at", "2015-02-02 18:46:27.671664"], ["updated_at", "2015-02-02 18:46:27.671664"]]
1516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1517
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1518
+  (0.4ms) rollback transaction
1519
+  (0.0ms) begin transaction
1520
+  (0.1ms) SAVEPOINT active_record_1
1521
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1522
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$PvbaTH4HSRq24qu1txUmI.dV3Il6bgs6YnNCwklUXEaPpyGdSU9dK"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:27.676318"], ["created_at", "2015-02-02 18:46:27.679715"], ["updated_at", "2015-02-02 18:46:27.679715"]]
1523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1524
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1525
+  (0.4ms) rollback transaction
1526
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1527
+  (0.1ms) begin transaction
1528
+  (0.1ms) SAVEPOINT active_record_1
1529
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
1530
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1531
+  (0.1ms) rollback transaction
1532
+  (0.1ms) begin transaction
1533
+  (0.0ms) SAVEPOINT active_record_1
1534
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1535
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "pSkkdzGxvA6KKa6phvSqyoPtjJP1pxarBNNj36pvSQYr"]]
1536
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$hqwfboH/VwYCbeUPYQz3q.MDxjKYwMsoXqIKNmdL/AzhvRgfMZYJ6"], ["auth_token", "pSkkdzGxvA6KKa6phvSqyoPtjJP1pxarBNNj36pvSQYr"], ["auth_token_expires_at", "2015-02-03 18:46:39.191308"], ["created_at", "2015-02-02 18:46:39.191632"], ["updated_at", "2015-02-02 18:46:39.191632"]]
1537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1538
+  (0.0ms) SAVEPOINT active_record_1
1539
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1540
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1541
+  (0.4ms) rollback transaction
1542
+  (0.0ms) begin transaction
1543
+  (0.0ms) SAVEPOINT active_record_1
1544
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
1545
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1546
+  (0.0ms) rollback transaction
1547
+  (0.0ms) begin transaction
1548
+  (0.0ms) SAVEPOINT active_record_1
1549
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
1550
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1551
+  (0.0ms) rollback transaction
1552
+  (0.0ms) begin transaction
1553
+  (0.0ms) SAVEPOINT active_record_1
1554
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
1555
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1556
+  (0.0ms) rollback transaction
1557
+  (0.0ms) begin transaction
1558
+  (0.0ms) SAVEPOINT active_record_1
1559
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
1560
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "UpsECq6yqKAVNR81yuNrYVmqZdrLpuU466UXXjFQSbxr"]]
1561
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.4@baz.org"], ["password_digest", "$2a$04$q1Pvs2MencfAjKROcx26BOf4yY2tSwzggR8s91dShk4P5VLA0Nzqy"], ["auth_token_expires_at", "2015-02-03 18:46:39.211892"], ["auth_token", "UpsECq6yqKAVNR81yuNrYVmqZdrLpuU466UXXjFQSbxr"], ["created_at", "2015-02-02 18:46:39.212072"], ["updated_at", "2015-02-02 18:46:39.212072"]]
1562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1563
+  (0.5ms) rollback transaction
1564
+  (0.0ms) begin transaction
1565
+  (0.0ms) SAVEPOINT active_record_1
1566
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
1567
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.5@baz.org"], ["password_digest", "$2a$04$NzW1QKWEOgFbRME/eMn96.ncp5qe9YSwc2Fzfglx0qrgYaT5U9wsS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.214398"], ["created_at", "2015-02-02 18:46:39.217095"], ["updated_at", "2015-02-02 18:46:39.217095"]]
1568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1569
+  (0.5ms) rollback transaction
1570
+  (0.0ms) begin transaction
1571
+  (0.0ms) SAVEPOINT active_record_1
1572
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
1573
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.6@baz.org"], ["password_digest", "$2a$04$KlDBgD50m69n30NhTVBwnutsGCqwghrzsdajOKPxRtyIhybgeqRnm"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.220061"], ["created_at", "2015-02-02 18:46:39.223146"], ["updated_at", "2015-02-02 18:46:39.223146"]]
1574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1575
+  (0.3ms) rollback transaction
1576
+  (0.0ms) begin transaction
1577
+  (0.0ms) SAVEPOINT active_record_1
1578
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
1579
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.7@baz.org"], ["password_digest", "$2a$04$DgkcRH2kxEVacCtKMrA5ReTtTLmAMj87QZbCdb3gil.fO.DkIV9L6"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.225471"], ["created_at", "2015-02-02 18:46:39.228196"], ["updated_at", "2015-02-02 18:46:39.228196"]]
1580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1581
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "W49qLsyJNy4qT8BqGLbTrn2J7oqYgnywksc5gYxyx5or"]]
1582
+  (0.3ms) rollback transaction
1583
+  (0.0ms) begin transaction
1584
+  (0.1ms) SAVEPOINT active_record_1
1585
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
1586
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.8@baz.org"], ["password_digest", "$2a$04$xTYzZz98cNX8szCE5KV69O5HiwZbFPOu6FNhDQgEdWPrBGaCmytOO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.231048"], ["created_at", "2015-02-02 18:46:39.233908"], ["updated_at", "2015-02-02 18:46:39.233908"]]
1587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1588
+  (0.3ms) rollback transaction
1589
+  (0.0ms) begin transaction
1590
+  (0.0ms) SAVEPOINT active_record_1
1591
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
1592
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$mgZeoS4isRFGX8zYRGiJquCpabjC6ur2RrBFLW17KmYwjtoDmesSq"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.236308"], ["created_at", "2015-02-02 18:46:39.239495"], ["updated_at", "2015-02-02 18:46:39.239495"]]
1593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1594
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "rHbKwpztqMQsRhonyrmnpKHcpzeV6vXuLvFQvKzeArYr"]]
1595
+  (0.5ms) rollback transaction
1596
+  (0.0ms) begin transaction
1597
+  (0.0ms) SAVEPOINT active_record_1
1598
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
1599
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$z.koIh0Ptn12N/dOAvach.pUWaCHviZJkD5PY0F10lzpbHvkIPmp6"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.243485"], ["created_at", "2015-02-02 18:46:39.246684"], ["updated_at", "2015-02-02 18:46:39.246684"]]
1600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1601
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zMcxCzKxs7CDuqf1RRCZqqS7x1MwQzMqfxRRLsRwSYzr"]]
1602
+  (0.8ms) rollback transaction
1603
+  (0.1ms) begin transaction
1604
+  (0.1ms) SAVEPOINT active_record_1
1605
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
1606
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$/9ewbgxYwuinbeNQnbGe2urA6TbT2ub6tUE6gB619JuPwHPs3jmE2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.255806"], ["created_at", "2015-02-02 18:46:39.260386"], ["updated_at", "2015-02-02 18:46:39.260386"]]
1607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1608
+  (0.6ms) rollback transaction
1609
+  (0.0ms) begin transaction
1610
+  (0.0ms) SAVEPOINT active_record_1
1611
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
1612
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$MaOtvTvyFdbY.ubZ0ikVcuiIOb.LVZ8ZWY/gfurF7o0nesnL4aUTu"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.263042"], ["created_at", "2015-02-02 18:46:39.265998"], ["updated_at", "2015-02-02 18:46:39.265998"]]
1613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1614
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "msmZF3HMp6DNBEj7wMk2PWTs85ojEsQVJSKVseMyqGkr"]]
1615
+  (0.0ms) SAVEPOINT active_record_1
1616
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "msmZF3HMp6DNBEj7wMk2PWTs85ojEsQVJSKVseMyqGkr"], ["auth_token_expires_at", "2015-02-03 18:46:39.267626"], ["updated_at", "2015-02-02 18:46:39.268005"], ["id", 1]]
1617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1618
+  (1.0ms) rollback transaction
1619
+  (0.0ms) begin transaction
1620
+  (0.1ms) SAVEPOINT active_record_1
1621
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
1622
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.13@baz.org"], ["password_digest", "$2a$04$4hdlKJBtmGtRIjxw4Q8cpeYAmFeI4MiCbC3RiFkjpEBHWlzM4Tb/m"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.271419"], ["created_at", "2015-02-02 18:46:39.274751"], ["updated_at", "2015-02-02 18:46:39.274751"]]
1623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1624
+  (0.4ms) rollback transaction
1625
+  (0.0ms) begin transaction
1626
+  (0.0ms) SAVEPOINT active_record_1
1627
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
1628
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.14@baz.org"], ["password_digest", "$2a$04$aKWoo1aGJZmFuJN1pKzAievKBQUDYORjOer/4/eGgvJcrqvY2dyyO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.277023"], ["created_at", "2015-02-02 18:46:39.279820"], ["updated_at", "2015-02-02 18:46:39.279820"]]
1629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1630
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "pikqd1JQ5LBspaX1SggysVLda1ZgwdxcUyqX3357aJkr"]]
1631
+  (0.0ms) SAVEPOINT active_record_1
1632
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "pikqd1JQ5LBspaX1SggysVLda1ZgwdxcUyqX3357aJkr"], ["auth_token_expires_at", "2015-02-03 18:46:39.281449"], ["updated_at", "2015-02-02 18:46:39.281804"], ["id", 1]]
1633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1634
+  (0.5ms) rollback transaction
1635
+  (0.0ms) begin transaction
1636
+  (0.1ms) SAVEPOINT active_record_1
1637
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
1638
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.15@baz.org"], ["password_digest", "$2a$04$OJIA55qd5Ba4nK/hmHdQLOCDLvHum/cUgApL90EpaMNWa/35drgEe"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.284024"], ["created_at", "2015-02-02 18:46:39.287387"], ["updated_at", "2015-02-02 18:46:39.287387"]]
1639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1640
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "sxmFBwpiszx4vHtXCPEMCkAGmvzjySZQSy9xAeqdxJor"]]
1641
+  (0.4ms) rollback transaction
1642
+  (0.0ms) begin transaction
1643
+  (0.1ms) SAVEPOINT active_record_1
1644
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
1645
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.16@baz.org"], ["password_digest", "$2a$04$ru2pi5NuY.IWD5VOFhv8IecfrCBzcP2H7xJCGWrWM70tPbBbNQFmO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:47:39.290850"], ["created_at", "2015-02-02 18:46:39.294418"], ["updated_at", "2015-02-02 18:46:39.294418"]]
1646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1647
+  (0.4ms) rollback transaction
1648
+  (0.1ms) begin transaction
1649
+  (0.1ms) SAVEPOINT active_record_1
1650
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
1651
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$QVyf3mtY8JHwOD17qbkqIeoBIiLGRq8MfQPWjDA0zWWI8iiIJTqdO"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:45:39.297522"], ["created_at", "2015-02-02 18:46:39.301075"], ["updated_at", "2015-02-02 18:46:39.301075"]]
1652
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1653
+  (0.4ms) rollback transaction
1654
+  (0.1ms) begin transaction
1655
+  (0.0ms) SAVEPOINT active_record_1
1656
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
1657
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.18@baz.org"], ["password_digest", "$2a$04$lBrAb0Jt0JFqh.jjCqQ/1.0LauKZRoAQsgntposGqD8aI7wsZKuXG"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.303891"], ["created_at", "2015-02-02 18:46:39.306948"], ["updated_at", "2015-02-02 18:46:39.306948"]]
1658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1659
+  (0.4ms) rollback transaction
1660
+  (0.0ms) begin transaction
1661
+  (0.0ms) SAVEPOINT active_record_1
1662
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
1663
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.19@baz.org"], ["password_digest", "$2a$04$F0gBQMTDD4grKbYhxNc8G.a/G9lKkbo3DdlNrn2OqSNXeBk7f5IqK"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:46:39.309374"], ["created_at", "2015-02-02 18:46:39.312507"], ["updated_at", "2015-02-02 18:46:39.312507"]]
1664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1665
+  (0.5ms) rollback transaction
1666
+  (0.0ms) begin transaction
1667
+  (0.0ms) SAVEPOINT active_record_1
1668
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1669
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$AJ0sFpw3oyXssYRZKpEY9OwpBlY29GYdWOCUh7XzAJ3Nusf2ac956"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.316605"], ["created_at", "2015-02-02 18:46:39.319421"], ["updated_at", "2015-02-02 18:46:39.319421"]]
1670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1671
+  (0.3ms) rollback transaction
1672
+  (0.0ms) begin transaction
1673
+  (0.0ms) SAVEPOINT active_record_1
1674
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1675
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$aBZf6UmumOYwD5NdCVg4g.0TRtoeXpz5KnEZb94e/8INK4xiMuUN2"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.321535"], ["created_at", "2015-02-02 18:46:39.324596"], ["updated_at", "2015-02-02 18:46:39.324596"]]
1676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1677
+  (0.4ms) rollback transaction
1678
+  (0.0ms) begin transaction
1679
+  (0.0ms) SAVEPOINT active_record_1
1680
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1681
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$r76RT1LF4vJHzEPqmnQDnuwtPkuNDX5h4MZPbzJQGdLyNEzRYJunW"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.327034"], ["created_at", "2015-02-02 18:46:39.329983"], ["updated_at", "2015-02-02 18:46:39.329983"]]
1682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1683
+  (0.0ms) SAVEPOINT active_record_1
1684
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1685
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.333820' WHERE "accounts"."id" = ? [["id", 1]]
1686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1687
+  (0.7ms) rollback transaction
1688
+  (0.0ms) begin transaction
1689
+  (0.1ms) SAVEPOINT active_record_1
1690
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1691
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Tul8bpoBimAI02rnpI44E.ZietkodDYCMvuWWDJUO9xrH9LZJM2OG"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.336333"], ["created_at", "2015-02-02 18:46:39.339685"], ["updated_at", "2015-02-02 18:46:39.339685"]]
1692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1693
+  (0.0ms) SAVEPOINT active_record_1
1694
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1695
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.341579' WHERE "accounts"."id" = ? [["id", 1]]
1696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1697
+  (0.7ms) rollback transaction
1698
+  (0.0ms) begin transaction
1699
+  (0.0ms) SAVEPOINT active_record_1
1700
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1701
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$lAr9F7/5IIdVcsjWgUMR/eIxqc/rYkx/ZGLB2HOFAyDJ3RdVv6eH."], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:46:39.343924"], ["created_at", "2015-02-02 18:46:39.347038"], ["updated_at", "2015-02-02 18:46:39.347038"]]
1702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1703
+  (0.0ms) SAVEPOINT active_record_1
1704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1705
+  (0.4ms) rollback transaction
1706
+  (0.0ms) begin transaction
1707
+  (0.0ms) SAVEPOINT active_record_1
1708
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1709
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$YDJRdg.Mwfw3ghFppVvTZuz5SamoP65502z3SNWEy7FBX7Hn9jO3W"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:46:39.350216"], ["created_at", "2015-02-02 18:46:39.353198"], ["updated_at", "2015-02-02 18:46:39.353198"]]
1710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1711
+  (0.0ms) SAVEPOINT active_record_1
1712
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1713
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "j2Z43VmBnraHqHisYvuyn41bqxPQdN9pp5KbzmrxkQAr"]]
1714
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "j2Z43VmBnraHqHisYvuyn41bqxPQdN9pp5KbzmrxkQAr"], ["auth_token_expires_at", "2015-02-03 18:46:39.355590"], ["updated_at", "2015-02-02 18:46:39.355876"], ["id", 1]]
1715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1716
+  (1.0ms) rollback transaction
1717
+  (0.0ms) begin transaction
1718
+  (0.0ms) SAVEPOINT active_record_1
1719
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1720
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$YYyGDaV4BZudpcD/qfF.EOIKGFCekOhl6IKIPk27IRY4Z59/GCsnS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.358901"], ["created_at", "2015-02-02 18:46:39.362327"], ["updated_at", "2015-02-02 18:46:39.362327"]]
1721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1722
+  (0.0ms) SAVEPOINT active_record_1
1723
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1724
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.369938' WHERE "accounts"."id" = ? [["id", 1]]
1725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1726
+  (0.6ms) rollback transaction
1727
+  (0.0ms) begin transaction
1728
+  (0.0ms) SAVEPOINT active_record_1
1729
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1730
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Ovg6TGRDtc1sMJJtb/CttObjI5sI/V183YD.1MZn6qS2.bBc1N3VK"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.372420"], ["created_at", "2015-02-02 18:46:39.375493"], ["updated_at", "2015-02-02 18:46:39.375493"]]
1731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1732
+  (0.1ms) SAVEPOINT active_record_1
1733
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1734
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.377400' WHERE "accounts"."id" = ? [["id", 1]]
1735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1736
+  (0.5ms) rollback transaction
1737
+  (0.0ms) begin transaction
1738
+  (0.1ms) SAVEPOINT active_record_1
1739
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1740
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$B2iy33LPvoiqPrKs0ziAPeIAN.A.kHqXEeNAsaYwA2GhA9Jlj8BKS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.379443"], ["created_at", "2015-02-02 18:46:39.382531"], ["updated_at", "2015-02-02 18:46:39.382531"]]
1741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1742
+  (0.0ms) SAVEPOINT active_record_1
1743
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1744
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.384534' WHERE "accounts"."id" = ? [["id", 1]]
1745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1746
+  (0.7ms) rollback transaction
1747
+  (0.1ms) begin transaction
1748
+  (0.0ms) SAVEPOINT active_record_1
1749
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1750
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$17JEx2wLn2qXN/lVH17AHu3qFu1H05FMxVL17nTrfruYDjejZLuAq"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.387163"], ["created_at", "2015-02-02 18:46:39.390373"], ["updated_at", "2015-02-02 18:46:39.390373"]]
1751
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1752
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1753
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "AzyAcPCRH9ZzUfMWArewbrymhsLqGBixvT9qGFRCqjMr"]]
1754
+  (0.1ms) SAVEPOINT active_record_1
1755
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "AzyAcPCRH9ZzUfMWArewbrymhsLqGBixvT9qGFRCqjMr"], ["auth_token_expires_at", "2015-02-03 18:46:39.394340"], ["updated_at", "2015-02-02 18:46:39.394956"], ["id", 1]]
1756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1757
+  (0.6ms) rollback transaction
1758
+  (0.0ms) begin transaction
1759
+  (0.0ms) SAVEPOINT active_record_1
1760
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1761
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$1PJ7HV81VJJvHs5fVJqGRO4zKS/WX//aGUJPATZ.QsyWGJhNIQyvW"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.398016"], ["created_at", "2015-02-02 18:46:39.401255"], ["updated_at", "2015-02-02 18:46:39.401255"]]
1762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1763
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1764
+  (0.6ms) rollback transaction
1765
+  (0.1ms) begin transaction
1766
+  (0.0ms) SAVEPOINT active_record_1
1767
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1768
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Bn.uoHrEa1ZSBZfHN1vPm.WgS3TcQeCN19MXzVd0pxsbOdNCCxWb6"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:46:39.406108"], ["created_at", "2015-02-02 18:46:39.409406"], ["updated_at", "2015-02-02 18:46:39.409406"]]
1769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1770
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
1771
+  (0.6ms) rollback transaction
1772
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1773
+  (0.1ms) begin transaction
1774
+  (0.1ms) SAVEPOINT active_record_1
1775
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1776
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$8Iws/3sm1SBC.mQmNY9qhetH0R.y5VMppsvafScGkCtdyoTH/xtHm"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:47:36.495398"], ["created_at", "2015-02-02 18:47:36.508602"], ["updated_at", "2015-02-02 18:47:36.508602"]]
1777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1778
+  (0.0ms) SAVEPOINT active_record_1
1779
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1780
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:47:36.512491' WHERE "accounts"."id" = ? [["id", 1]]
1781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1782
+  (3.0ms) rollback transaction
1783
+  (0.1ms) begin transaction
1784
+  (0.0ms) SAVEPOINT active_record_1
1785
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1786
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$baknxfrFAhQDT1ARiz7jfOCy2av74PL.A0bPMC.uFJUTrU0dFS3LS"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:47:36.517527"], ["created_at", "2015-02-02 18:47:36.520919"], ["updated_at", "2015-02-02 18:47:36.520919"]]
1787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1788
+  (0.1ms) SAVEPOINT active_record_1
1789
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
1790
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:47:36.522820' WHERE "accounts"."id" = ? [["id", 1]]
1791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1792
+  (0.7ms) rollback transaction
1793
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1794
+  (0.1ms) begin transaction
1795
+  (0.1ms) SAVEPOINT active_record_1
1796
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
1797
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "2SoHWiRETywHqm7JERYbU6gFNiFQx5xuqW2nBuXyuxEr"]]
1798
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$q1t8Buufbx1rHi2MClQ5h.1KYWOgfNMMjEXic4kuWp7ppORjbloJG"], ["auth_token", "2SoHWiRETywHqm7JERYbU6gFNiFQx5xuqW2nBuXyuxEr"], ["auth_token_expires_at", "2015-02-03 18:48:22.333906"], ["created_at", "2015-02-02 18:48:22.334225"], ["updated_at", "2015-02-02 18:48:22.334225"]]
1799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1800
+ Processing by AccountsController#index as HTML
1801
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1802
+  (0.4ms) rollback transaction
1803
+  (0.0ms) begin transaction
1804
+  (0.0ms) SAVEPOINT active_record_1
1805
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
1806
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "s2k2GZat2me22eMaXBEZHw5nayHNALXAoj6qcYmaycsr"]]
1807
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$jHXkwJSmuxnoOcwm4qfpoOvTi8k4pD42MAbLouaa5Bb0VSxdgE9m2"], ["auth_token", "s2k2GZat2me22eMaXBEZHw5nayHNALXAoj6qcYmaycsr"], ["auth_token_expires_at", "2015-02-03 18:48:22.344062"], ["created_at", "2015-02-02 18:48:22.344260"], ["updated_at", "2015-02-02 18:48:22.344260"]]
1808
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1809
+ Processing by AccountsController#show as HTML
1810
+ Parameters: {"id"=>"1"}
1811
+  (0.0ms) SAVEPOINT active_record_1
1812
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') LIMIT 1
1813
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.347519' WHERE "accounts"."id" = ? [["id", 1]]
1814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1815
+ Completed 200 OK in 2ms (ActiveRecord: 0.5ms)
1816
+  (0.7ms) rollback transaction
1817
+  (0.0ms) begin transaction
1818
+ Processing by AccountsController#index as HTML
1819
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
1820
+  (0.0ms) rollback transaction
1821
+  (0.0ms) begin transaction
1822
+ Processing by AccountsController#show as HTML
1823
+ Parameters: {"id"=>"1"}
1824
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
1825
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
1826
+  (0.0ms) rollback transaction
1827
+  (0.0ms) begin transaction
1828
+  (0.1ms) rollback transaction
1829
+  (0.0ms) begin transaction
1830
+  (0.1ms) SAVEPOINT active_record_1
1831
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
1832
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "sTyrHqdomWHy2CuXJs5KDFqbynzTq5yetaER3CupEYxr"]]
1833
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$GDyoAmxei1IZsNFrTTZPEOtNlbE6HG7IYwygofbwcg1ChgyUY3Tzu"], ["auth_token", "sTyrHqdomWHy2CuXJs5KDFqbynzTq5yetaER3CupEYxr"], ["auth_token_expires_at", "2015-02-03 18:48:22.360798"], ["created_at", "2015-02-02 18:48:22.361006"], ["updated_at", "2015-02-02 18:48:22.361006"]]
1834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1835
+ Processing by AccountsController#show as HTML
1836
+ Parameters: {"id"=>"1"}
1837
+  (0.0ms) SAVEPOINT active_record_1
1838
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') LIMIT 1
1839
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.363913' WHERE "accounts"."id" = ? [["id", 1]]
1840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1841
+ Completed 200 OK in 2ms (ActiveRecord: 0.4ms)
1842
+  (0.9ms) rollback transaction
1843
+  (0.1ms) begin transaction
1844
+  (0.0ms) SAVEPOINT active_record_1
1845
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
1846
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1847
+  (0.1ms) rollback transaction
1848
+  (0.0ms) begin transaction
1849
+  (0.0ms) SAVEPOINT active_record_1
1850
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1851
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "55Fc4UQ1DVi7RniXnLirVMciVyEye89z57jAszbsXusr"]]
1852
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$8sRCSLti5BmkWYiV1O06fuRAXVx7ZS7JkjuKtP3obnD11v4MbknJi"], ["auth_token", "55Fc4UQ1DVi7RniXnLirVMciVyEye89z57jAszbsXusr"], ["auth_token_expires_at", "2015-02-03 18:48:22.380432"], ["created_at", "2015-02-02 18:48:22.380652"], ["updated_at", "2015-02-02 18:48:22.380652"]]
1853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1854
+  (0.1ms) SAVEPOINT active_record_1
1855
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1856
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1857
+  (0.4ms) rollback transaction
1858
+  (0.1ms) begin transaction
1859
+  (0.0ms) SAVEPOINT active_record_1
1860
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
1861
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1862
+  (0.0ms) rollback transaction
1863
+  (0.0ms) begin transaction
1864
+  (0.1ms) SAVEPOINT active_record_1
1865
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
1866
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1867
+  (0.1ms) rollback transaction
1868
+  (0.1ms) begin transaction
1869
+  (0.0ms) SAVEPOINT active_record_1
1870
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
1871
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1872
+  (0.0ms) rollback transaction
1873
+  (0.0ms) begin transaction
1874
+  (0.1ms) SAVEPOINT active_record_1
1875
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
1876
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "rBLxJx11YssTXodY4k6XQyHpQJRgmzFjvM77onfrw9cr"]]
1877
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.7@baz.org"], ["password_digest", "$2a$04$aZgRHT4fpHQzwBT2vjnOP.gJGTpdMf15iX/91jd2MPrxWW69bUfPm"], ["auth_token_expires_at", "2015-02-03 18:48:22.402864"], ["auth_token", "rBLxJx11YssTXodY4k6XQyHpQJRgmzFjvM77onfrw9cr"], ["created_at", "2015-02-02 18:48:22.403121"], ["updated_at", "2015-02-02 18:48:22.403121"]]
1878
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1879
+  (0.5ms) rollback transaction
1880
+  (0.1ms) begin transaction
1881
+  (0.0ms) SAVEPOINT active_record_1
1882
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
1883
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.8@baz.org"], ["password_digest", "$2a$04$.6rytaxS7yn3sAdR9nMj/eu3hGOqzrdPtLzqIEUi2IueO7wMgAp1C"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.406240"], ["created_at", "2015-02-02 18:48:22.409324"], ["updated_at", "2015-02-02 18:48:22.409324"]]
1884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1885
+  (0.4ms) rollback transaction
1886
+  (0.0ms) begin transaction
1887
+  (0.0ms) SAVEPOINT active_record_1
1888
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
1889
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$SsJshYUW1aEpBWs9DoDxo.hIY0p9h4goAhMPOnNr9mbzHLQ7vpzKW"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.411736"], ["created_at", "2015-02-02 18:48:22.414783"], ["updated_at", "2015-02-02 18:48:22.414783"]]
1890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1891
+  (0.4ms) rollback transaction
1892
+  (0.0ms) begin transaction
1893
+  (0.0ms) SAVEPOINT active_record_1
1894
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
1895
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$wIeez.F0JSIrSghTSMn.b.vFqRJmDyqS5m3/oyG5Y8oGyqlVyOO5y"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.417445"], ["created_at", "2015-02-02 18:48:22.420388"], ["updated_at", "2015-02-02 18:48:22.420388"]]
1896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1897
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "EzSpPxjQgCECykZrjsGhNWhbYqqDEELj6JbhDqRHS1Ar"]]
1898
+  (0.3ms) rollback transaction
1899
+  (0.0ms) begin transaction
1900
+  (0.0ms) SAVEPOINT active_record_1
1901
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
1902
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$kvBv4/bpnokKR1apyVXnN.4paP/w6OFIlR5Z7jUPJNbNgoAhxwat6"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.423359"], ["created_at", "2015-02-02 18:48:22.426500"], ["updated_at", "2015-02-02 18:48:22.426500"]]
1903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1904
+  (0.3ms) rollback transaction
1905
+  (0.0ms) begin transaction
1906
+  (0.0ms) SAVEPOINT active_record_1
1907
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
1908
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$weOQzizhfyMQMB2TX6oj8O34A86SiIlylAshFcLIbmLWRo8gIJFi2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.428800"], ["created_at", "2015-02-02 18:48:22.431679"], ["updated_at", "2015-02-02 18:48:22.431679"]]
1909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1910
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "KZGyssq8AK1N9E3aKy4p4qfWqmqKAdy8Wq3XWqxQufxr"]]
1911
+  (0.3ms) rollback transaction
1912
+  (0.0ms) begin transaction
1913
+  (0.0ms) SAVEPOINT active_record_1
1914
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
1915
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.13@baz.org"], ["password_digest", "$2a$04$kC0RVbUFyo7P/1MdapbzWuJoyuswrO52x2vHjQ2esVbgYLxB0kbW2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.435597"], ["created_at", "2015-02-02 18:48:22.438936"], ["updated_at", "2015-02-02 18:48:22.438936"]]
1916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1917
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "LCp1we2N6Hnxe9yY5yJU39ax6yVbbJVUc7DXUZp9DGMr"]]
1918
+  (0.6ms) rollback transaction
1919
+  (0.0ms) begin transaction
1920
+  (0.1ms) SAVEPOINT active_record_1
1921
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
1922
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.14@baz.org"], ["password_digest", "$2a$04$jM.GBKrDT8w2SpDsFmVpu.SYX.6O.HtkAytyC0pC0m20iknQU1F5C"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.447902"], ["created_at", "2015-02-02 18:48:22.451011"], ["updated_at", "2015-02-02 18:48:22.451011"]]
1923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1924
+  (0.4ms) rollback transaction
1925
+  (0.1ms) begin transaction
1926
+  (0.0ms) SAVEPOINT active_record_1
1927
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
1928
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.15@baz.org"], ["password_digest", "$2a$04$8CBSlnir6tctFNOV7YZuX.fyg9M1NsTPdf/chbZ2MXqL1bT6GW03W"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.453591"], ["created_at", "2015-02-02 18:48:22.456716"], ["updated_at", "2015-02-02 18:48:22.456716"]]
1929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1930
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "kq4bP8jrGuamUJeC5Yf1dDh6YU9s2g1aywTsJmoeXpkr"]]
1931
+  (0.0ms) SAVEPOINT active_record_1
1932
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "kq4bP8jrGuamUJeC5Yf1dDh6YU9s2g1aywTsJmoeXpkr"], ["auth_token_expires_at", "2015-02-03 18:48:22.458516"], ["updated_at", "2015-02-02 18:48:22.458875"], ["id", 1]]
1933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1934
+  (0.9ms) rollback transaction
1935
+  (0.1ms) begin transaction
1936
+  (0.1ms) SAVEPOINT active_record_1
1937
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
1938
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.16@baz.org"], ["password_digest", "$2a$04$6ApS4rhx0/0Yqjg447keEO.d.bCnObQq59iKfpb/.d9E4azPwKRB2"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.462525"], ["created_at", "2015-02-02 18:48:22.465765"], ["updated_at", "2015-02-02 18:48:22.465765"]]
1939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1940
+  (0.4ms) rollback transaction
1941
+  (0.1ms) begin transaction
1942
+  (0.0ms) SAVEPOINT active_record_1
1943
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
1944
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$x/aiggSjmRd7aIW54e28LepgBaAxStyQNZKpvSmBSOgABXtdZCF0."], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.468194"], ["created_at", "2015-02-02 18:48:22.471180"], ["updated_at", "2015-02-02 18:48:22.471180"]]
1945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1946
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BEuTMpW4AatDcHwJDzWFzA8NRBdqwonTVCyV9zNGuwxr"]]
1947
+  (0.0ms) SAVEPOINT active_record_1
1948
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "BEuTMpW4AatDcHwJDzWFzA8NRBdqwonTVCyV9zNGuwxr"], ["auth_token_expires_at", "2015-02-03 18:48:22.472854"], ["updated_at", "2015-02-02 18:48:22.473220"], ["id", 1]]
1949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1950
+  (0.5ms) rollback transaction
1951
+  (0.1ms) begin transaction
1952
+  (0.1ms) SAVEPOINT active_record_1
1953
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
1954
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.18@baz.org"], ["password_digest", "$2a$04$a4.ojY9vK6QHHm624nQj8.huu7FygZyMYX.ZLvDUmE.LW734ajTo6"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.475705"], ["created_at", "2015-02-02 18:48:22.478894"], ["updated_at", "2015-02-02 18:48:22.478894"]]
1955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1956
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "WbtfJK695zAoXcid58sBmpzFPJpBsi8GkaomRdTxCsQr"]]
1957
+  (0.4ms) rollback transaction
1958
+  (0.0ms) begin transaction
1959
+  (0.0ms) SAVEPOINT active_record_1
1960
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
1961
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.19@baz.org"], ["password_digest", "$2a$04$V3DsSNyGGDXcndOc9U8X4eZr3F/bAW52DJqYvFgaihWua3l..SRk6"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:49:22.482192"], ["created_at", "2015-02-02 18:48:22.485109"], ["updated_at", "2015-02-02 18:48:22.485109"]]
1962
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1963
+  (0.3ms) rollback transaction
1964
+  (0.0ms) begin transaction
1965
+  (0.0ms) SAVEPOINT active_record_1
1966
+ Account Exists (0.8ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
1967
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$k7u4Rffyw3r3sUo.UzeMr.aHARaTnGMi9nPmRTZrTJl9xxrJRaGma"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-02 18:47:22.487255"], ["created_at", "2015-02-02 18:48:22.491114"], ["updated_at", "2015-02-02 18:48:22.491114"]]
1968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1969
+  (0.4ms) rollback transaction
1970
+  (0.0ms) begin transaction
1971
+  (0.1ms) SAVEPOINT active_record_1
1972
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
1973
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$wDa1bNTdQVtHNfzvTytPAewoMPsLu0XUEV5jHDQO0izYw0T.Zw7qy"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.493890"], ["created_at", "2015-02-02 18:48:22.497212"], ["updated_at", "2015-02-02 18:48:22.497212"]]
1974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1975
+  (0.4ms) rollback transaction
1976
+  (0.1ms) begin transaction
1977
+  (0.1ms) SAVEPOINT active_record_1
1978
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
1979
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$PT/.Q1CUZt4tgnZ0DUiv.O5yHblikaFD5Kefn3ZsWc.nbMzJ/Dcru"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-02-03 18:48:22.499748"], ["created_at", "2015-02-02 18:48:22.502825"], ["updated_at", "2015-02-02 18:48:22.502825"]]
1980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1981
+  (0.4ms) rollback transaction
1982
+  (0.1ms) begin transaction
1983
+  (0.0ms) SAVEPOINT active_record_1
1984
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1985
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$736cYBpHT4Wx4cOteSJT7.8fJTCcCnCKgOjnjbj2lbhidyKHSH9jO"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.507547"], ["created_at", "2015-02-02 18:48:22.510640"], ["updated_at", "2015-02-02 18:48:22.510640"]]
1986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1987
+  (0.6ms) rollback transaction
1988
+  (0.0ms) begin transaction
1989
+  (0.1ms) SAVEPOINT active_record_1
1990
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1991
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$7H8XfayzfvKPirIVVG6wTOuO.CFtk2E04hGXowDTgSAVWvlmc8zO2"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.513273"], ["created_at", "2015-02-02 18:48:22.522124"], ["updated_at", "2015-02-02 18:48:22.522124"]]
1992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1993
+  (0.4ms) rollback transaction
1994
+  (0.0ms) begin transaction
1995
+  (0.0ms) SAVEPOINT active_record_1
1996
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
1997
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$0r3g.TsMEYrmM7fD7g2WzOWumkR6kU79KdAdZ62YTvOcdP9jdK.c2"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.525204"], ["created_at", "2015-02-02 18:48:22.528375"], ["updated_at", "2015-02-02 18:48:22.528375"]]
1998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1999
+  (0.0ms) SAVEPOINT active_record_1
2000
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2001
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.532516' WHERE "accounts"."id" = ? [["id", 1]]
2002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2003
+  (0.6ms) rollback transaction
2004
+  (0.0ms) begin transaction
2005
+  (0.1ms) SAVEPOINT active_record_1
2006
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2007
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Args2tUIwcR3jzw/4x7INuGltPs/wMtss/VmYahwbUI1gNi0wulPm"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.534836"], ["created_at", "2015-02-02 18:48:22.537960"], ["updated_at", "2015-02-02 18:48:22.537960"]]
2008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2009
+  (0.1ms) SAVEPOINT active_record_1
2010
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2011
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.539891' WHERE "accounts"."id" = ? [["id", 1]]
2012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2013
+  (0.6ms) rollback transaction
2014
+  (0.1ms) begin transaction
2015
+  (0.0ms) SAVEPOINT active_record_1
2016
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2017
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$oBqkLzWA8ni3y7jbIz6RXedPEeLkKVbdBs5X8O3LRMEkBJ4OK6mn6"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:48:22.542679"], ["created_at", "2015-02-02 18:48:22.545868"], ["updated_at", "2015-02-02 18:48:22.545868"]]
2018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2019
+  (0.0ms) SAVEPOINT active_record_1
2020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2021
+  (0.4ms) rollback transaction
2022
+  (0.0ms) begin transaction
2023
+  (0.0ms) SAVEPOINT active_record_1
2024
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2025
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$jBpRmmMblREFP/WSTCmRDuCnovzdQwBE5WnycL0OoVmEgWsmrvYBe"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-01-26 18:48:22.549031"], ["created_at", "2015-02-02 18:48:22.552250"], ["updated_at", "2015-02-02 18:48:22.552250"]]
2026
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2027
+  (0.0ms) SAVEPOINT active_record_1
2028
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2029
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "se3BQA3qfezx6xDVzuVQhA4dNyULibVqHh5Nqzxr2WQr"]]
2030
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "se3BQA3qfezx6xDVzuVQhA4dNyULibVqHh5Nqzxr2WQr"], ["auth_token_expires_at", "2015-02-03 18:48:22.555340"], ["updated_at", "2015-02-02 18:48:22.555699"], ["id", 1]]
2031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2032
+  (0.9ms) rollback transaction
2033
+  (0.0ms) begin transaction
2034
+  (0.0ms) SAVEPOINT active_record_1
2035
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2036
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$XKFVVtrUzHdt9oxu3I.SPOmFqjfkLXR4uHBdE9kpN5JKxLU/5IaSC"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.558729"], ["created_at", "2015-02-02 18:48:22.561794"], ["updated_at", "2015-02-02 18:48:22.561794"]]
2037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2038
+  (0.0ms) SAVEPOINT active_record_1
2039
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2040
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.563961' WHERE "accounts"."id" = ? [["id", 1]]
2041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2042
+  (1.7ms) rollback transaction
2043
+  (0.0ms) begin transaction
2044
+  (0.0ms) SAVEPOINT active_record_1
2045
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2046
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$SacZUgJVUZPAbVYnbqJhM.RitvNF.jrbGa88lEgnzfae2oteotK66"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.567302"], ["created_at", "2015-02-02 18:48:22.570278"], ["updated_at", "2015-02-02 18:48:22.570278"]]
2047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2048
+  (0.0ms) SAVEPOINT active_record_1
2049
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2050
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.572378' WHERE "accounts"."id" = ? [["id", 1]]
2051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2052
+  (0.6ms) rollback transaction
2053
+  (0.0ms) begin transaction
2054
+  (0.1ms) SAVEPOINT active_record_1
2055
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2056
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$pKlY2enhJ26YLj4AdhaWA.0Dnv2ScAKjyfbufdNiBwh0ytQL3er.G"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.574630"], ["created_at", "2015-02-02 18:48:22.578110"], ["updated_at", "2015-02-02 18:48:22.578110"]]
2057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2058
+  (0.1ms) SAVEPOINT active_record_1
2059
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2060
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.580069' WHERE "accounts"."id" = ? [["id", 1]]
2061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2062
+  (0.6ms) rollback transaction
2063
+  (0.0ms) begin transaction
2064
+  (0.0ms) SAVEPOINT active_record_1
2065
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2066
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$cD5U2g.kZMe9yVFXxKqvee6cvnf8Mu7P1D7mlbwT3pIoWJL/Sybrm"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.582415"], ["created_at", "2015-02-02 18:48:22.585636"], ["updated_at", "2015-02-02 18:48:22.585636"]]
2067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2068
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2069
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Ki7LttVKrz8ESvMAfrGPfuF2WUKum79ZFdc1sJPkNUEr"]]
2070
+  (0.1ms) SAVEPOINT active_record_1
2071
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "Ki7LttVKrz8ESvMAfrGPfuF2WUKum79ZFdc1sJPkNUEr"], ["auth_token_expires_at", "2015-02-03 18:48:22.590002"], ["updated_at", "2015-02-02 18:48:22.590445"], ["id", 1]]
2072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2073
+  (0.5ms) rollback transaction
2074
+  (0.0ms) begin transaction
2075
+  (0.0ms) SAVEPOINT active_record_1
2076
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2077
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$DeHV3FcwJkQalGoEEkhQoutcynbJIZ0JMw2AqudcWDE/FjpXs1oS6"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.593309"], ["created_at", "2015-02-02 18:48:22.596605"], ["updated_at", "2015-02-02 18:48:22.596605"]]
2078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2079
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
2080
+  (0.4ms) rollback transaction
2081
+  (0.1ms) begin transaction
2082
+  (0.1ms) SAVEPOINT active_record_1
2083
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
2084
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$OdBNDjWNo/J6auR4eX.xmuumE77eS4XIlP3iP01jL2.IVq2DZvJwi"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-02-03 18:48:22.601432"], ["created_at", "2015-02-02 18:48:22.604713"], ["updated_at", "2015-02-02 18:48:22.604713"]]
2085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2086
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
2087
+  (0.3ms) rollback transaction