pillowfort 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +0 -1
- data/app/models/pillowfort/concerns/model_authentication.rb +7 -3
- data/lib/pillowfort/version.rb +1 -1
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/accounts.js +2 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/accounts.css +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/accounts_controller.rb +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/accounts_helper.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/account.rb +3 -0
- data/spec/dummy/app/views/accounts/index.html.erb +2 -0
- data/spec/dummy/app/views/accounts/show.html.erb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +31 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +17 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +60 -0
- data/spec/dummy/config/secrets.yml +14 -0
- data/spec/dummy/db/migrate/20150127045508_create_accounts.rb +12 -0
- data/spec/dummy/db/schema.rb +25 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +2087 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/spec/controllers/accounts_controller_spec.rb +52 -0
- data/spec/dummy/spec/factories/accounts.rb +10 -0
- data/spec/dummy/spec/models/account_spec.rb +276 -0
- data/spec/dummy/spec/rails_helper.rb +52 -0
- data/spec/dummy/spec/spec_helper.rb +85 -0
- data/spec/dummy/spec/support/helpers/authentication_helper.rb +15 -0
- 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,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
|
Binary file
|
File without changes
|
@@ -0,0 +1,2087 @@
|
|
1
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
|
5
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "w3jPqrWd3Hyun7gudkWgSpFPPsFRhCRv44WSsrvUpdQr"]]
|
6
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
8
|
+
Processing by AccountsController#index as HTML
|
9
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
10
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
13
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1[0m
|
14
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "QCNnX2w6GXgZ3XBksyksUNTR5nwS8sYL5HsMUpTM5DEr"]]
|
15
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17
|
+
Processing by AccountsController#show as HTML
|
18
|
+
Parameters: {"id"=>"1"}
|
19
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
20
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foo.bar.2@baz.org"]]
|
21
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.623052' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
22
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.5ms)
|
24
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
25
|
+
[1m[35m (0.0ms)[0m begin transaction
|
26
|
+
Processing by AccountsController#index as HTML
|
27
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
28
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
29
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
35
|
+
[1m[35m (0.0ms)[0m begin transaction
|
36
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
37
|
+
[1m[35m (0.0ms)[0m begin transaction
|
38
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
39
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
|
40
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "yAqAGNyXDNcLQYkYs3BMuxpjqdJ6hDw9dNSLsBUZhWMr"]]
|
41
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
43
|
+
Processing by AccountsController#show as HTML
|
44
|
+
Parameters: {"id"=>"1"}
|
45
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
46
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1[0m [["email", "foo.bar.3@baz.org"]]
|
47
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.637229' WHERE "accounts"."id" = ? [["id", 1]]
|
48
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.4ms)
|
50
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
51
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
52
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
53
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1[0m
|
54
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
55
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
56
|
+
[1m[35m (0.0ms)[0m begin transaction
|
57
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
58
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
59
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "Ncc9q583m1ji5nFEpkbRLu1JnkrKkq87sfsqxQkMu2or"]]
|
60
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
62
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
63
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
64
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
65
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
66
|
+
[1m[35m (0.0ms)[0m begin transaction
|
67
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
68
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
|
69
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
70
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
71
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
72
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
73
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1[0m
|
74
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
75
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
76
|
+
[1m[35m (0.0ms)[0m begin transaction
|
77
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
78
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
|
79
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
80
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
81
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
82
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
83
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1[0m
|
84
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "SNHfM3hCAa4QXyYgLUqpJz8M5CmKHKezsFfnG6JDTacr"]]
|
85
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
87
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
88
|
+
[1m[35m (0.1ms)[0m begin transaction
|
89
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
90
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
|
91
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
93
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
94
|
+
[1m[35m (0.1ms)[0m begin transaction
|
95
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
96
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
|
97
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
99
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
100
|
+
[1m[35m (0.0ms)[0m begin transaction
|
101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
102
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
|
103
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
105
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "oa8vmDDpP4ZYo2sAjVCYs5tDLCuRZ9PDBzeJZxCnfrUr"]]
|
106
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
107
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
108
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1[0m
|
110
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
113
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
114
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
115
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1[0m
|
116
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
118
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "bpsTJY7Tmh68uAQ52YbwgAeeMmfFAnSot32kdH3YbUcr"]]
|
119
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
120
|
+
[1m[35m (0.1ms)[0m begin transaction
|
121
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
122
|
+
[1m[35mAccount Exists (0.3ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
|
123
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
125
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "UkdZCs62CzkpmH9XqD3SdjoUwmZuzrwsfMekii5duxcr"]]
|
126
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
127
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
128
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
129
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1[0m
|
130
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
132
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
133
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
134
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
135
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1[0m
|
136
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
138
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "qqwvfXxy5b7xY1KyHXXbMiszhsqMvoU4e5ZbdsKH64Ur"]]
|
139
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
140
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
142
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
143
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
144
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
145
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1[0m
|
146
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
148
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
149
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
150
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
151
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1[0m
|
152
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
154
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "NemyUDhndMpm9o9wsQTXzanXPmXFFzM71JZUPj6P22Yr"]]
|
155
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
156
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
158
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
159
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
160
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
161
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1[0m
|
162
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
164
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "8pFNcUnQh8u2Uc5sRugn2XwT6GpBMmWRfEqyhsASty8r"]]
|
165
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
166
|
+
[1m[35m (0.0ms)[0m begin transaction
|
167
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
168
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
|
169
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
171
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
172
|
+
[1m[35m (0.1ms)[0m begin transaction
|
173
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
174
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
|
175
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
177
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
178
|
+
[1m[35m (0.0ms)[0m begin transaction
|
179
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
180
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
|
181
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
183
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
184
|
+
[1m[35m (0.2ms)[0m begin transaction
|
185
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
186
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
|
187
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
189
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
190
|
+
[1m[35m (0.1ms)[0m begin transaction
|
191
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
192
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
193
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
195
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
196
|
+
[1m[35m (0.1ms)[0m begin transaction
|
197
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
198
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
199
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
201
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
202
|
+
[1m[35m (0.0ms)[0m begin transaction
|
203
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
204
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
205
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
207
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
208
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
209
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
210
|
+
[1m[35m (0.1ms)[0m begin transaction
|
211
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
212
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
213
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
215
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
216
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
|
217
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "vCsdUo1XgGqVJaZqkga4c96XRgCCLqqinJsqRxcrmqEr"]]
|
218
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
220
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
221
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
223
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
224
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
226
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
227
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1[0m [["email", "foobar@baz.com"]]
|
228
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.833864' WHERE "accounts"."id" = ? [["id", 1]]
|
229
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
230
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
232
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
233
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
234
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
236
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
237
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1[0m [["email", "foobar@baz.com"]]
|
238
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.841486' WHERE "accounts"."id" = ? [["id", 1]]
|
239
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
240
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
241
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
242
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
243
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
244
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
246
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
247
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1[0m [["email", "foobar@baz.com"]]
|
248
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-01-30 04:48:07.848072' WHERE "accounts"."id" = ? [["id", 1]]
|
249
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
250
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
251
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
252
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
253
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
254
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
256
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com"]]
|
257
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "zbsSqE6JthGoFcxspyWPvwyq9hcThwW1uKMf2FD2cGEr"]]
|
258
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
259
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
261
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
262
|
+
[1m[35m (0.0ms)[0m begin transaction
|
263
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
264
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
265
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
267
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1[0m [["email", "foobar@baz.com"]]
|
268
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
269
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
270
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
271
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
272
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
274
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."email" = ? LIMIT 1 [["email", "foobar@baz.com_evil"]]
|
275
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
276
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
277
|
+
[1m[35m (0.1ms)[0m begin transaction
|
278
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
279
|
+
[1m[35mAccount Exists (0.6ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
|
280
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "sjzdFwSixBBiZTbUHeuyuTKTDh8Y5Tv9NFKGZzyyJBsr"]]
|
281
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
283
|
+
Processing by AccountsController#index as HTML
|
284
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
285
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
286
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
287
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
288
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1[0m
|
289
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "VCg1Z263sZ6enSxv65CXhReeWxcKw2gUJxfY7E7qz4cr"]]
|
290
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
292
|
+
Processing by AccountsController#show as HTML
|
293
|
+
Parameters: {"id"=>"1"}
|
294
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
295
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
|
296
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.756454' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
297
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
298
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.6ms)
|
299
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
300
|
+
[1m[35m (0.0ms)[0m begin transaction
|
301
|
+
Processing by AccountsController#index as HTML
|
302
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
303
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
304
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
310
|
+
[1m[35m (0.0ms)[0m begin transaction
|
311
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
312
|
+
[1m[35m (0.1ms)[0m begin transaction
|
313
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
314
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
|
315
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "TZRyyFAT8p4Hy91zHXpzFqppFw411GvXvSyQiVbDKs4r"]]
|
316
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
318
|
+
Processing by AccountsController#show as HTML
|
319
|
+
Parameters: {"id"=>"1"}
|
320
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
321
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
322
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.772629' WHERE "accounts"."id" = ? [["id", 1]]
|
323
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
324
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.6ms)
|
325
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
327
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
328
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1[0m
|
329
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
330
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
331
|
+
[1m[35m (0.1ms)[0m begin transaction
|
332
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
333
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
334
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "tJ9b2oiayvv9g6ptmqLqxkdkqHiK5fodABCRXXAoCFAr"]]
|
335
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
337
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
338
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
339
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
340
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
341
|
+
[1m[35m (0.0ms)[0m begin transaction
|
342
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
343
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
|
344
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
345
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
346
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
347
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1[0m
|
349
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
350
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
351
|
+
[1m[35m (0.1ms)[0m begin transaction
|
352
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
353
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
|
354
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
355
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
356
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
357
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
358
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1[0m
|
359
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "kK4xzGyswDUhmamcxqZcfks5w9uP3opVAuaQqSYNVnMr"]]
|
360
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
362
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
363
|
+
[1m[35m (0.0ms)[0m begin transaction
|
364
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
365
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
|
366
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
368
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
369
|
+
[1m[35m (0.0ms)[0m begin transaction
|
370
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
371
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
|
372
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
374
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
375
|
+
[1m[35m (0.0ms)[0m begin transaction
|
376
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
377
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
|
378
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
380
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "XQCuQHxEU9qbfxss45rpm1grd48jTFv9tWeuqtHbmSQr"]]
|
381
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
382
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
383
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
384
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1[0m
|
385
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
387
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
388
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
389
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
390
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1[0m
|
391
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
393
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "ucshgw8VKgR4ctRszHw8CqmkHxFf1VibT8vWctqz4CEr"]]
|
394
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
395
|
+
[1m[35m (0.0ms)[0m begin transaction
|
396
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
397
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
|
398
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
400
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "x8buHyzAvXndUkgPDayCzxthT4jd1EjTPurcoYNqSNAr"]]
|
401
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
404
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1[0m
|
405
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
407
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
408
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
410
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1[0m
|
411
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
413
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Nz2Gn1vNxnrtXaQ6vzRvqXae9YLpmkabH56YX1t7n84r"]]
|
414
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
415
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
417
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
418
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
419
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
420
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1[0m
|
421
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
423
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
424
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
426
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1[0m
|
427
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
429
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "4giyGwTs9qk4NsBdeFxCLgfQVzzzBpcKYzX17VmZgqMr"]]
|
430
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
431
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
433
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
434
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
435
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
436
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1[0m
|
437
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
439
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "F3iqopQDALRUPNxXsytsGx2uRtsjvaDFz7LxsRRgADUr"]]
|
440
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
441
|
+
[1m[35m (0.0ms)[0m begin transaction
|
442
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
443
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
|
444
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
446
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
447
|
+
[1m[35m (0.1ms)[0m begin transaction
|
448
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
449
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
|
450
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
452
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
453
|
+
[1m[35m (0.0ms)[0m begin transaction
|
454
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
455
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
|
456
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
458
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
459
|
+
[1m[35m (0.0ms)[0m begin transaction
|
460
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
461
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
|
462
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
464
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
465
|
+
[1m[35m (0.0ms)[0m begin transaction
|
466
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
467
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
468
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
470
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
471
|
+
[1m[35m (0.0ms)[0m begin transaction
|
472
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
473
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
474
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
476
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
477
|
+
[1m[35m (0.1ms)[0m begin transaction
|
478
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
479
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
480
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
482
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
483
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
484
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.950871' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
485
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
486
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
487
|
+
[1m[35m (0.0ms)[0m begin transaction
|
488
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
489
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
490
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
492
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
493
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
494
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.959572' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
495
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
496
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
497
|
+
[1m[35m (0.1ms)[0m begin transaction
|
498
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
499
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
500
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
502
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
503
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
504
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "vXTpzMGNmDXcHcCzigx3CsgKqSffXbN7tJLWtou5PvQr"]]
|
505
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
507
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
508
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
509
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
510
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
511
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
513
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
514
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
515
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zV4tuxqGD2fzFs4y9SWQPREHpeX2ZwDcQdPfuZr9zBcr"]]
|
516
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
518
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
519
|
+
[1m[35m (0.0ms)[0m begin transaction
|
520
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
521
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
522
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
524
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
525
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
526
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.988090' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
527
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
528
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
529
|
+
[1m[35m (0.0ms)[0m begin transaction
|
530
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
531
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
532
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
534
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
535
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
536
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:11.995428' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
537
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
538
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
539
|
+
[1m[35m (0.0ms)[0m begin transaction
|
540
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
541
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
542
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
544
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
545
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
546
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:25:12.003090' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
547
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
548
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
549
|
+
[1m[35m (0.0ms)[0m begin transaction
|
550
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
551
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
552
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
554
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
555
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "QRt9LhoYqxSpHyWMAsLnq6xky57CsFhjSx6E2sxuWeMr"]]
|
556
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
557
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
559
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
560
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
562
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
563
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
565
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
566
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
567
|
+
[1m[35m (0.1ms)[0m begin transaction
|
568
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
569
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
570
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
572
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
573
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
574
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
575
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
576
|
+
[1m[35m (0.1ms)[0m begin transaction
|
577
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
578
|
+
[1m[35mAccount Exists (0.4ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
|
579
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "3yRNuA4YKPGPN1qz1zeTqAcLdkrjNx2neRkjaTgpY9sr"]]
|
580
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
582
|
+
Processing by AccountsController#index as HTML
|
583
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
584
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
585
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
586
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
587
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1[0m
|
588
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "y7HYYpepDzsycgybzoSpqYHUosfGrb4PVV4VaVxQs8Ar"]]
|
589
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
591
|
+
Processing by AccountsController#show as HTML
|
592
|
+
Parameters: {"id"=>"1"}
|
593
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
594
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
|
595
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.301463' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
596
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
597
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.7ms)
|
598
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
599
|
+
[1m[35m (0.0ms)[0m begin transaction
|
600
|
+
Processing by AccountsController#index as HTML
|
601
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
602
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
603
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
609
|
+
[1m[35m (0.0ms)[0m begin transaction
|
610
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
611
|
+
[1m[35m (0.0ms)[0m begin transaction
|
612
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
613
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
|
614
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "BeTYLRhuty8xZ8ZLb667S1pWNMjcouDMhR2QDc2i1bEr"]]
|
615
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
617
|
+
Processing by AccountsController#show as HTML
|
618
|
+
Parameters: {"id"=>"1"}
|
619
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
620
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
621
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.317664' WHERE "accounts"."id" = ? [["id", 1]]
|
622
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
623
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.5ms)
|
624
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
625
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
626
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
627
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1[0m
|
628
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
629
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
630
|
+
[1m[35m (0.0ms)[0m begin transaction
|
631
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
632
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
633
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "qcXuJodZRjnvZnRxdnFyNQU6TcU2BFhpTEVBKTiKShMr"]]
|
634
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
636
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
637
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
638
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
639
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
640
|
+
[1m[35m (0.0ms)[0m begin transaction
|
641
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
642
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
|
643
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
644
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
645
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
646
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
647
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1[0m
|
648
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
649
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
650
|
+
[1m[35m (0.0ms)[0m begin transaction
|
651
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
652
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
|
653
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
654
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
655
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
656
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
657
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1[0m
|
658
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zsbMduz3sZRXx2tQc1UYiLdpUSxAfPLT39zwy8qiXpEr"]]
|
659
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
661
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
662
|
+
[1m[35m (0.0ms)[0m begin transaction
|
663
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
664
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
|
665
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
667
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
668
|
+
[1m[35m (0.0ms)[0m begin transaction
|
669
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
670
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
|
671
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
673
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
674
|
+
[1m[35m (0.0ms)[0m begin transaction
|
675
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
676
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
|
677
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
679
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "juA2FbHtabLCQxVftMYkeqpSzknq6ZHp8NYvekR97ggr"]]
|
680
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
681
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
682
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
683
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1[0m
|
684
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
686
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
687
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
688
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
689
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1[0m
|
690
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
692
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "9Pz8YEsdN8wEgDjCpVxz2U9yGFgn5jVbfq5UxQ4QZhxr"]]
|
693
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
694
|
+
[1m[35m (0.0ms)[0m begin transaction
|
695
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
696
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
|
697
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
699
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "DnjYDcXsogxtQaU9qrVXe5KfuS7HbQPdh4a5kdbALFxr"]]
|
700
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
701
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
702
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
703
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1[0m
|
704
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
706
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
707
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
708
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
709
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1[0m
|
710
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
712
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BdEFpL8HCfp93xCtKKct2TmMw88QjAGdySMK45Yq5oMr"]]
|
713
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
714
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
716
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
717
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
718
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
719
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1[0m
|
720
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
722
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
723
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
724
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
725
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1[0m
|
726
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
728
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Zh3HEJHaqUuCePVkQtxRYx5xvupBrmWhYU5RGyA5CJAr"]]
|
729
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
730
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
732
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
733
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
734
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
735
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1[0m
|
736
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
738
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "KwqyQTrCzizowK9VtYE7HNbquzKmwqKh11ZwyydS5c4r"]]
|
739
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
740
|
+
[1m[35m (0.0ms)[0m begin transaction
|
741
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
742
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
|
743
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
745
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
746
|
+
[1m[35m (0.0ms)[0m begin transaction
|
747
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
748
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
|
749
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
751
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
752
|
+
[1m[35m (0.0ms)[0m begin transaction
|
753
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
754
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
|
755
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
757
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
758
|
+
[1m[35m (0.0ms)[0m begin transaction
|
759
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
760
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
|
761
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
763
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
764
|
+
[1m[35m (0.1ms)[0m begin transaction
|
765
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
766
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
767
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
769
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
770
|
+
[1m[35m (0.0ms)[0m begin transaction
|
771
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
772
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
773
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
775
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
776
|
+
[1m[35m (0.0ms)[0m begin transaction
|
777
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
778
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
779
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
781
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
782
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
783
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.486762' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
784
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
785
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
786
|
+
[1m[35m (0.0ms)[0m begin transaction
|
787
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
788
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
789
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
791
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
792
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
793
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.494777' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
794
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
795
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
796
|
+
[1m[35m (0.0ms)[0m begin transaction
|
797
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
798
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
799
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
801
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
802
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
803
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
804
|
+
[1m[35m (0.0ms)[0m begin transaction
|
805
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
806
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
807
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
809
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
810
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
811
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "Es1cp4bqn9A1bcdgnTxJSTwB5eqHyPCJZCcSWqBb7Fkr"]]
|
812
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
814
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
815
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
816
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
817
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
818
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
820
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
821
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
822
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.517590' WHERE "accounts"."id" = ? [["id", 1]]
|
823
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
824
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
825
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
826
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
827
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
828
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
830
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
831
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
832
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.524902' WHERE "accounts"."id" = ? [["id", 1]]
|
833
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
834
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
835
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
836
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
837
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
838
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
840
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
841
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
842
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:26:00.532537' WHERE "accounts"."id" = ? [["id", 1]]
|
843
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
844
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
845
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
846
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
847
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
848
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
850
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
851
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "NTwmrhaRYbsRZCoqyCssFUgwxUNf2SFGku9VLdp5pJcr"]]
|
852
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
853
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
855
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
856
|
+
[1m[35m (0.0ms)[0m begin transaction
|
857
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
858
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
859
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
861
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
862
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
863
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
864
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
865
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
866
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
868
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
|
869
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
870
|
+
[1m[35mAccount Load (0.2ms)[0m SELECT "accounts".* FROM "accounts"
|
871
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
872
|
+
[1m[35m (0.1ms)[0m begin transaction
|
873
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
874
|
+
[1m[35mAccount Exists (0.5ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
|
875
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "bWqLjtYWzycsHpvM28ZNPMoM2yd2wU8yuyj3HnCrEQzr"]]
|
876
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
878
|
+
Processing by AccountsController#index as HTML
|
879
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
880
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
882
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
883
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1[0m
|
884
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "kzWWech1a7YkHC1RQQKDU2wLUjNyQonnQH6M1pzXTeQr"]]
|
885
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
887
|
+
Processing by AccountsController#show as HTML
|
888
|
+
Parameters: {"id"=>"1"}
|
889
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
890
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1
|
891
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.483000' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
892
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
893
|
+
Completed 200 OK in 3ms (ActiveRecord: 0.9ms)
|
894
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
895
|
+
[1m[35m (0.0ms)[0m begin transaction
|
896
|
+
Processing by AccountsController#index as HTML
|
897
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
898
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
899
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
905
|
+
[1m[35m (0.0ms)[0m begin transaction
|
906
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
907
|
+
[1m[35m (0.0ms)[0m begin transaction
|
908
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
909
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
|
910
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "rHkpHh9upxqM3Q2PQUqzi9FAuBdxNfsybUi6sywxqqQr"]]
|
911
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
913
|
+
Processing by AccountsController#show as HTML
|
914
|
+
Parameters: {"id"=>"1"}
|
915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
916
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
917
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.499854' WHERE "accounts"."id" = ? [["id", 1]]
|
918
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
919
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.5ms)
|
920
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
921
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
922
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
923
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1[0m
|
924
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
925
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
926
|
+
[1m[35m (0.0ms)[0m begin transaction
|
927
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
928
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
929
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "ovyJqyskedY6MWrq9uaQd61fG1XcteCF4th51u42JAUr"]]
|
930
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
932
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
933
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
934
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
935
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
936
|
+
[1m[35m (0.0ms)[0m begin transaction
|
937
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
938
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
|
939
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
940
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
941
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
942
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
943
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1[0m
|
944
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
945
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
946
|
+
[1m[35m (0.0ms)[0m begin transaction
|
947
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
948
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
|
949
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
950
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
951
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
952
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
953
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1[0m
|
954
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "PqV6RbPp9jLD7DUNTKbbKmuPv1qJn26euiXmnPcENxor"]]
|
955
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
957
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
958
|
+
[1m[35m (0.0ms)[0m begin transaction
|
959
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
960
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
|
961
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
963
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
964
|
+
[1m[35m (0.0ms)[0m begin transaction
|
965
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
966
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
|
967
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
969
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
970
|
+
[1m[35m (0.0ms)[0m begin transaction
|
971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
972
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
|
973
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
975
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "dqoGW2UpdMTzrqdYzvt74iYn3EyBiWXQ7ciQgYQXBxQr"]]
|
976
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
977
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
978
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
979
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1[0m
|
980
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
982
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
983
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
984
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
985
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1[0m
|
986
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
988
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "EzwySuqLTf1nU2LwkNH3DzJipBf4JDQe5woQiXVxfqMr"]]
|
989
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
990
|
+
[1m[35m (0.0ms)[0m begin transaction
|
991
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
992
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
|
993
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
995
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "Ne2upxZAoMpDJLyZdKRBZRgHZKL1f8qnSPDXV4h84Mor"]]
|
996
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
997
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
998
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
999
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1[0m
|
1000
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1002
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1003
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1004
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1005
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1[0m
|
1006
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1008
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "EUpZvkSUNJxScAMHERrm6Pzd4GQEjeGex7Zp3xyijXQr"]]
|
1009
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1010
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1012
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1013
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1014
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1015
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1[0m
|
1016
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1018
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1020
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1021
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1[0m
|
1022
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1024
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "LzpuzinjwSzed9zyYFyFSqqj69X1gptj8EqvXzKyppsr"]]
|
1025
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1026
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1028
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1029
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1030
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1031
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1[0m
|
1032
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1034
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "QDgeZR9ZYcXsjpgrfQdGCSwhkXTpqaGZZmVAAA7iH9Mr"]]
|
1035
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1036
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1037
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1038
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
|
1039
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1041
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1042
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1043
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1044
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
|
1045
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1047
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1048
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1049
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1050
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
|
1051
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1053
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1054
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1055
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1056
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
|
1057
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1059
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1060
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1061
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1062
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1063
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1065
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1066
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1067
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1068
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1069
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1071
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1072
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1073
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1074
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1075
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1077
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1078
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
1079
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.670208' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1080
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1081
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1082
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1084
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1085
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1087
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1088
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
1089
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.678305' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1090
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1091
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1092
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1093
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1094
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1095
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1097
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1098
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1099
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1100
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1102
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1103
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1105
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1106
|
+
[1m[35mAccount Load (0.2ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
1107
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "3f7yfABqvQzoDYdY63qv6eV8R8YVJ9Tw9YEksQ2v9KAr"]]
|
1108
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1110
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1111
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1112
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1113
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1114
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1116
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1117
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1118
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.704137' WHERE "accounts"."id" = ? [["id", 1]]
|
1119
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1120
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1121
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1122
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1123
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1124
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1127
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1128
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.711636' WHERE "accounts"."id" = ? [["id", 1]]
|
1129
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1130
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1131
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1132
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1133
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1134
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1137
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1138
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:28:31.719431' WHERE "accounts"."id" = ? [["id", 1]]
|
1139
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1140
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1142
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1143
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1144
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1146
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1
|
1147
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "TM2EVP3tx75swd4t23hUsDUJFCBHu4ST6Wjz8rcRPF4r"]]
|
1148
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1149
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1151
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1152
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1153
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1154
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1155
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1157
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1158
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1159
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1160
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1161
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1162
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1164
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
|
1165
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1166
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts"
|
1167
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1168
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1169
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1170
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1171
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1173
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1174
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
|
1175
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1176
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1177
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1178
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1179
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1180
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1181
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1182
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1184
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1185
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
|
1186
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1187
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1188
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1189
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1190
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1192
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1193
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1195
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1196
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
|
1197
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1198
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
1199
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1200
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1201
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1202
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1203
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1204
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1206
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1207
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
|
1208
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1209
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts"
|
1210
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1211
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1212
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1213
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1214
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1215
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1217
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1[0m
|
1218
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') ORDER BY "accounts"."id" ASC LIMIT 1
|
1219
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1220
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts"
|
1221
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
1222
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1223
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1224
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1225
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1226
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1228
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1229
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
|
1230
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1231
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts"
|
1232
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1233
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1234
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1235
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1236
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1237
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1239
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1240
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
|
1241
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1242
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1243
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1244
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1245
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1246
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1247
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1249
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1250
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
|
1251
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1252
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
1253
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1254
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1255
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1256
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1257
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1259
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1260
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil')
|
1261
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts"[0m
|
1262
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1263
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1264
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1265
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1266
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1267
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1269
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1270
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts"
|
1271
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
1272
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1273
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1274
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1275
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1276
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1278
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1279
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
1280
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1281
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1282
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1283
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
|
1284
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1285
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1286
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1287
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1288
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1289
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BM5wBqfqmjkNh5AxUzd1xVWzj2ECXVGphmrYPNxTygQr"]]
|
1290
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1292
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1293
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1294
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1295
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1296
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1297
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1298
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1[0m
|
1299
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1300
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1301
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1302
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1303
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
|
1304
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1305
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1307
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1308
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1[0m
|
1309
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1310
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1311
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1312
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1313
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
|
1314
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "6N3mKV5NzpRH9eQZqDsqSX2WrgMniqpw9Ah9grNqJkUr"]]
|
1315
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1317
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1318
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1319
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1320
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1[0m
|
1321
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1323
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1324
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1325
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1326
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1[0m
|
1327
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1329
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1330
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1331
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1332
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1[0m
|
1333
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1335
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Q9dkkwxJE48fs5TfiT8Ja1SqQjbm7LvXUYmqAk7achwr"]]
|
1336
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1337
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1338
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1339
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
|
1340
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1342
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1343
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1344
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1345
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
|
1346
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1348
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "FWASFQH8RLYqbCMQUHdUsxHaanDdJsFj7GtBGDs7PCcr"]]
|
1349
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1350
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1351
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1352
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1[0m
|
1353
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1355
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "yV9m1J5d8ZGRho2GSpzAqbtnQxpt3ptPAHxuS9fbngYr"]]
|
1356
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
1357
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1358
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1359
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
|
1360
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1362
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1363
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1364
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1365
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
|
1366
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1368
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "v3uKtNNxZet7JprTkd1p83pjdDadpHibYwEqsZwqSsEr"]]
|
1369
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1370
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1372
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1373
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1374
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1375
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
|
1376
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1378
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1379
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1380
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1381
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
|
1382
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1384
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "Z1KHLjSV4Dagi9ZcZZDsptgV7UxjvKQzsLKPqgzPC1kr"]]
|
1385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1386
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1388
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1389
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1390
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1391
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
|
1392
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1394
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "9xsk8bAuPhvVsH1LkJydVaKazjvyppe9f1z65xV6WA4r"]]
|
1395
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1396
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1398
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1[0m
|
1399
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1401
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1404
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1[0m
|
1405
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1407
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1408
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1410
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1[0m
|
1411
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1413
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1414
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1415
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1416
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1[0m
|
1417
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1419
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1421
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1422
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1423
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1425
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1426
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1427
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1428
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1429
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1431
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1432
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1433
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1434
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1435
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1438
|
+
[1m[36mAccount Load (0.2ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1439
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.604207' WHERE "accounts"."id" = ? [["id", 1]]
|
1440
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1441
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1442
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1443
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1444
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1445
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1447
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1448
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1449
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.612367' WHERE "accounts"."id" = ? [["id", 1]]
|
1450
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1451
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1452
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1453
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1454
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1455
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1457
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1458
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1459
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1460
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1461
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1462
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1463
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1465
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1466
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1467
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "PEuBUFgf3pcAVm7Rrn2NM37ngEKTiU16CNBbXSSxpGEr"]]
|
1468
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1470
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1471
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1472
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1473
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1474
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1476
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1477
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1478
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.640813' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1479
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1480
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1481
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1482
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1483
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1484
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1486
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1487
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1488
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.647706' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1489
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1490
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1491
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1492
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1493
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1494
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1497
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1498
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:27.655288' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1499
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1500
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
1501
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1502
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1503
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1504
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1506
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1507
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "s6waqW6nXhBFVxFbxi9stGZvdxdDqr6AXgc1Lu3z45kr"]]
|
1508
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1509
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1511
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1512
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1513
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1514
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1515
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1517
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1518
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1519
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1520
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1521
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1522
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1524
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1525
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1526
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1527
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1528
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1529
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
|
1530
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1531
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1532
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1533
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1534
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1535
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "pSkkdzGxvA6KKa6phvSqyoPtjJP1pxarBNNj36pvSQYr"]]
|
1536
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1539
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1540
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1541
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1542
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1543
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1544
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1[0m
|
1545
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1546
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1547
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1548
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1549
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
|
1550
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1551
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1552
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1553
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1554
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1[0m
|
1555
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1556
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1557
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1558
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1559
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
|
1560
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "UpsECq6yqKAVNR81yuNrYVmqZdrLpuU466UXXjFQSbxr"]]
|
1561
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1563
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1564
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1565
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1566
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1[0m
|
1567
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1569
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1570
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1572
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1[0m
|
1573
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1575
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1576
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1577
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1578
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1[0m
|
1579
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1581
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "W49qLsyJNy4qT8BqGLbTrn2J7oqYgnywksc5gYxyx5or"]]
|
1582
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1583
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1584
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1585
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
|
1586
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1588
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1589
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1590
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1591
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
|
1592
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1594
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "rHbKwpztqMQsRhonyrmnpKHcpzeV6vXuLvFQvKzeArYr"]]
|
1595
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1596
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1597
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1598
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1[0m
|
1599
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1601
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zMcxCzKxs7CDuqf1RRCZqqS7x1MwQzMqfxRRLsRwSYzr"]]
|
1602
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
1603
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1604
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1605
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
|
1606
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1608
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1609
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1610
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1611
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
|
1612
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1614
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "msmZF3HMp6DNBEj7wMk2PWTs85ojEsQVJSKVseMyqGkr"]]
|
1615
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1616
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1618
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
1619
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1620
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1621
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
|
1622
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1624
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1625
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1626
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1627
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
|
1628
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1630
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "pikqd1JQ5LBspaX1SggysVLda1ZgwdxcUyqX3357aJkr"]]
|
1631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1632
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1634
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1635
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1636
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1637
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
|
1638
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1640
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "sxmFBwpiszx4vHtXCPEMCkAGmvzjySZQSy9xAeqdxJor"]]
|
1641
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1642
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1643
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1644
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1[0m
|
1645
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1647
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1649
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1650
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1[0m
|
1651
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1653
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1654
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1655
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1656
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1[0m
|
1657
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1659
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1660
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1661
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1662
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1[0m
|
1663
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1665
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1666
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1667
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1668
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1669
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1671
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1672
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1673
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1674
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1675
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1677
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1678
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1679
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1680
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1681
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1683
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1684
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1685
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.333820' WHERE "accounts"."id" = ? [["id", 1]]
|
1686
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1687
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1689
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1690
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1691
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1693
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1694
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1695
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.341579' WHERE "accounts"."id" = ? [["id", 1]]
|
1696
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1697
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1699
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1700
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1701
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1703
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1704
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1705
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1706
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1708
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1709
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1712
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1713
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "j2Z43VmBnraHqHisYvuyn41bqxPQdN9pp5KbzmrxkQAr"]]
|
1714
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1716
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
1717
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1718
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1719
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1720
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1722
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1723
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1724
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.369938' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1725
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1726
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1727
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1728
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1729
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1730
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1732
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1733
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1734
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.377400' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1735
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1736
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1737
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1738
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1739
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1740
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1742
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1743
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1744
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:46:39.384534' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1745
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1746
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
1747
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1748
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1749
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1750
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1752
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
1753
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "AzyAcPCRH9ZzUfMWArewbrymhsLqGBixvT9qGFRCqjMr"]]
|
1754
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1755
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1757
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1760
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1761
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1763
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1764
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1765
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1766
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1767
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1768
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1770
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1[0m
|
1771
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1772
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1773
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1774
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1775
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1776
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1778
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1779
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1780
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:47:36.512491' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1781
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1782
|
+
[1m[36m (3.0ms)[0m [1mrollback transaction[0m
|
1783
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1784
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1785
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1786
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1788
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1789
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
1790
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:47:36.522820' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1791
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1792
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
1793
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1794
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1795
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1796
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
|
1797
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "2SoHWiRETywHqm7JERYbU6gFNiFQx5xuqW2nBuXyuxEr"]]
|
1798
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1800
|
+
Processing by AccountsController#index as HTML
|
1801
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
1802
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1804
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1805
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1[0m
|
1806
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "s2k2GZat2me22eMaXBEZHw5nayHNALXAoj6qcYmaycsr"]]
|
1807
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1809
|
+
Processing by AccountsController#show as HTML
|
1810
|
+
Parameters: {"id"=>"1"}
|
1811
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1812
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') LIMIT 1
|
1813
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.347519' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
1814
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1815
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.5ms)
|
1816
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
1817
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1818
|
+
Processing by AccountsController#index as HTML
|
1819
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
1820
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1821
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1827
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1828
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1829
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1830
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1831
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
|
1832
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "sTyrHqdomWHy2CuXJs5KDFqbynzTq5yetaER3CupEYxr"]]
|
1833
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1835
|
+
Processing by AccountsController#show as HTML
|
1836
|
+
Parameters: {"id"=>"1"}
|
1837
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1838
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.3@baz.org') LIMIT 1[0m
|
1839
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.363913' WHERE "accounts"."id" = ? [["id", 1]]
|
1840
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1841
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.4ms)
|
1842
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1843
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1844
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1845
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1[0m
|
1846
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1847
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1848
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1849
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1850
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1851
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "55Fc4UQ1DVi7RniXnLirVMciVyEye89z57jAszbsXusr"]]
|
1852
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1854
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1855
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
1856
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1857
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1858
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1859
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1860
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
|
1861
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1862
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1863
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1864
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1865
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1[0m
|
1866
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
1867
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1868
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1869
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1870
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
|
1871
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1872
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1873
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1874
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1875
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1[0m
|
1876
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "rBLxJx11YssTXodY4k6XQyHpQJRgmzFjvM77onfrw9cr"]]
|
1877
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1879
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1880
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1882
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
|
1883
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1885
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1886
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1887
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1888
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
|
1889
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1891
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1892
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1893
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1894
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
|
1895
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1897
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "EzSpPxjQgCECykZrjsGhNWhbYqqDEELj6JbhDqRHS1Ar"]]
|
1898
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1899
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1900
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1901
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1[0m
|
1902
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1904
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1905
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1906
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1907
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1[0m
|
1908
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1910
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "KZGyssq8AK1N9E3aKy4p4qfWqmqKAdy8Wq3XWqxQufxr"]]
|
1911
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1912
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1913
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1914
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
|
1915
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1917
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "LCp1we2N6Hnxe9yY5yJU39ax6yVbbJVUc7DXUZp9DGMr"]]
|
1918
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1919
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1920
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1921
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1[0m
|
1922
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1924
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1925
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1926
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1927
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1[0m
|
1928
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1930
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "kq4bP8jrGuamUJeC5Yf1dDh6YU9s2g1aywTsJmoeXpkr"]]
|
1931
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1932
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1934
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
1935
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1936
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1937
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1[0m
|
1938
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1940
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1941
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1942
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1943
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1[0m
|
1944
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1946
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BEuTMpW4AatDcHwJDzWFzA8NRBdqwonTVCyV9zNGuwxr"]]
|
1947
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1948
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1950
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1951
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1952
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1953
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1[0m
|
1954
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1956
|
+
[1m[35mAccount Load (0.0ms)[0m SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "WbtfJK695zAoXcid58sBmpzFPJpBsi8GkaomRdTxCsQr"]]
|
1957
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1958
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1959
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1960
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
|
1961
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1963
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1964
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1965
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1966
|
+
[1m[35mAccount Exists (0.8ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
|
1967
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1969
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1970
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1971
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1972
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
|
1973
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1975
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1976
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1977
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1978
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
|
1979
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1981
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1982
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1984
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1985
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1987
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1988
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1989
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1990
|
+
[1m[35mAccount Exists (0.2ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1991
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1993
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1994
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1995
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1996
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
1997
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1999
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2000
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
2001
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.532516' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
2002
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2003
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2004
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2005
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2006
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
2007
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2009
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2010
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
2011
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.539891' WHERE "accounts"."id" = ?[0m [["id", 1]]
|
2012
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2013
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2014
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2015
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2016
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
2017
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2019
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2020
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2021
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2022
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2024
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
2025
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2027
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2028
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
2029
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "se3BQA3qfezx6xDVzuVQhA4dNyULibVqHh5Nqzxr2WQr"]]
|
2030
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2032
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
2033
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2034
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2035
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
2036
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2039
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
2040
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.563961' WHERE "accounts"."id" = ? [["id", 1]]
|
2041
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2042
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
2043
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2044
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2045
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
2046
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2048
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2049
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
2050
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.572378' WHERE "accounts"."id" = ? [["id", 1]]
|
2051
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2052
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2053
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2054
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2055
|
+
[1m[36mAccount Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
2056
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2058
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2059
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
2060
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "accounts" SET "auth_token_expires_at" = '2015-02-03 18:48:22.580069' WHERE "accounts"."id" = ? [["id", 1]]
|
2061
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2062
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2063
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2065
|
+
[1m[36mAccount Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
2066
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2068
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
|
2069
|
+
[1m[36mAccount Load (0.0ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1[0m [["auth_token", "Ki7LttVKrz8ESvMAfrGPfuF2WUKum79ZFdc1sJPkNUEr"]]
|
2070
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2071
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ?[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2073
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2074
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2075
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2076
|
+
[1m[35mAccount Exists (0.1ms)[0m SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
|
2077
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "accounts" ("email", "password_digest", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2079
|
+
[1m[36mAccount Load (0.1ms)[0m [1mSELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1[0m
|
2080
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2081
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2082
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2083
|
+
[1m[36mAccount Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1[0m
|
2084
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2086
|
+
[1m[35mAccount Load (0.1ms)[0m SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
|
2087
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|