pillowfort 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 090ed10762f83742768099773d63068509626187
4
- data.tar.gz: ff8ca919af0d107937dad72486dfcfb90b825892
3
+ metadata.gz: 90f1971bb413805a0e4f37a0bf01a88f493eb9f5
4
+ data.tar.gz: bc36e2368e9a14716d0f078a167ff40ee84df116
5
5
  SHA512:
6
- metadata.gz: 5fe28a307620e700011e9a3c99768a9f20380e116ac5dd5ed2c77c5ece56824f9d3ca849273c2ea5701b1587fc0350f2707d49c01c846963cd6e4845151bd1bd
7
- data.tar.gz: c203cfc9f830a6c63dc00a05a40d15074d20f61f3002bada09d4346ef6b315086a35d6f14086526c284a7cc6f24f4f354eec94aa925524f11e2197786d113021
6
+ metadata.gz: 08afdfe0df96430ff878bd1358108d1f74fbf006e010cb328462add93625e2cf55ba0cc9893988e1b82286775109cf6095f75c4fb3fcfb3e06c08e77f6d20e21
7
+ data.tar.gz: e4eaa8c668ca9e4da0d11c2b97d68e4d25aa598898175cccfcd2d09403271f279059d5e80e97766fee0eb4c15b06ce250224ce62c5134487e9a5175a1987632e
@@ -8,8 +8,6 @@ module Pillowfort
8
8
  extend ActiveSupport::Concern
9
9
  include BCrypt
10
10
 
11
- MIN_PASSWORD_LENGTH = 8
12
-
13
11
  included do
14
12
  Pillowfort::ModelContext.model_class = self
15
13
 
@@ -17,7 +15,9 @@ module Pillowfort
17
15
  has_secure_password
18
16
 
19
17
  validates :email, presence: true, uniqueness: true
20
- validates :password, length: { minimum: MIN_PASSWORD_LENGTH }, allow_nil: true
18
+ validates :password,
19
+ length: { minimum: Pillowfort.config.min_password_length },
20
+ allow_nil: true
21
21
 
22
22
  before_save :ensure_auth_token
23
23
 
@@ -27,7 +27,7 @@ module Pillowfort
27
27
 
28
28
  def reset_auth_token
29
29
  self.auth_token = generate_auth_token
30
- self.auth_token_expires_at = 1.day.from_now
30
+ self.auth_token_expires_at = generate_expiry
31
31
  end
32
32
 
33
33
  def reset_auth_token!
@@ -41,8 +41,12 @@ module Pillowfort
41
41
 
42
42
  private
43
43
 
44
+ def generate_expiry
45
+ Time.now + Pillowfort.config.auth_token_ttl
46
+ end
47
+
44
48
  def touch_token_expiry!
45
- update_column :auth_token_expires_at, Time.now + auth_token_ttl
49
+ update_column :auth_token_expires_at, generate_expiry
46
50
  end
47
51
 
48
52
  def generate_auth_token
data/lib/pillowfort.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require "pillowfort/config"
1
2
  require "pillowfort/engine"
2
3
 
3
4
  module Pillowfort
@@ -0,0 +1,25 @@
1
+ module Pillowfort
2
+ class << self
3
+ def configure(&block)
4
+ yield config
5
+ end
6
+
7
+ def config
8
+ @config ||= Pillowfort::Configuration.new
9
+ end
10
+ end
11
+
12
+ class Configuration
13
+ include ActiveSupport::Configurable
14
+
15
+ # auth_token_ttl: <default> 1.day
16
+ config_accessor :auth_token_ttl do
17
+ 1.day
18
+ end
19
+
20
+ # min_password_length: <default> 8
21
+ config_accessor :min_password_length do
22
+ 8
23
+ end
24
+ end
25
+ end
@@ -1,3 +1,3 @@
1
1
  module Pillowfort
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -11,21 +11,20 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20150413161345) do
14
+ ActiveRecord::Schema.define(version: 20150211185152) do
15
15
 
16
16
  create_table "accounts", force: :cascade do |t|
17
17
  t.string "email"
18
18
  t.string "password_digest"
19
19
  t.string "auth_token"
20
20
  t.datetime "auth_token_expires_at"
21
- t.datetime "created_at", null: false
22
- t.datetime "updated_at", null: false
21
+ t.datetime "created_at", null: false
22
+ t.datetime "updated_at", null: false
23
23
  t.string "password_reset_token"
24
24
  t.datetime "password_reset_token_expires_at"
25
25
  t.datetime "activated_at"
26
26
  t.string "activation_token"
27
27
  t.datetime "activation_token_expires_at"
28
- t.integer "auth_token_ttl", default: 86400, null: false
29
28
  end
30
29
 
31
30
  end
Binary file
@@ -15677,3 +15677,2398 @@ Completed 403 Forbidden in 2ms (ActiveRecord: 0.6ms)
15677
15677
   (0.1ms) RELEASE SAVEPOINT active_record_1
15678
15678
  Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
15679
15679
   (0.5ms) rollback transaction
15680
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
15681
+  (2.7ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "password_digest" varchar, "auth_token" varchar, "auth_token_expires_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "password_reset_token" varchar, "password_reset_token_expires_at" datetime, "activated_at" datetime, "activation_token" varchar, "activation_token_expires_at" datetime, "auth_token_ttl" integer DEFAULT 86400 NOT NULL) 
15682
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
15683
+  (0.3ms) select sqlite_version(*)
15684
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15685
+  (0.2ms) SELECT version FROM "schema_migrations"
15686
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150413161345')
15687
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127045508')
15688
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150210215727')
15689
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150211185152')
15690
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
15691
+  (0.8ms) begin transaction
15692
+  (0.1ms) SAVEPOINT active_record_1
15693
+ Account Exists (0.7ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
15694
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15695
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "XqApgUGGyEtfLdxf3MsKdYmUgxaAxYy1yBpyB8c8dYgr"]]
15696
+ SQL (0.7ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$5XLjKpecrfpGpuAzm7EiauDoWdJ6emvzUZ0qdpPOPtUns2oc860/S"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.504571"], ["auth_token", "XqApgUGGyEtfLdxf3MsKdYmUgxaAxYy1yBpyB8c8dYgr"], ["auth_token_expires_at", "2015-07-08 04:51:18.523000"], ["created_at", "2015-07-07 04:51:18.525710"], ["updated_at", "2015-07-07 04:51:18.525710"]]
15697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15698
+ SQL (0.6ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:18.529619', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
15699
+ Processing by AccountsController#index as HTML
15700
+ Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
15701
+  (1.2ms) rollback transaction
15702
+  (0.1ms) begin transaction
15703
+  (0.1ms) SAVEPOINT active_record_1
15704
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
15705
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15706
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "cQxdx8h7A3Wp1wj7bxDd8wh9kHjRqPS9qRagGkybfskr"]]
15707
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$auhCrvHjaFcmh/UNQqiaBeQTXoaI3Iro7U1O4nera6dbv38CpSQhq"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.547606"], ["auth_token", "cQxdx8h7A3Wp1wj7bxDd8wh9kHjRqPS9qRagGkybfskr"], ["auth_token_expires_at", "2015-07-08 04:51:18.551254"], ["created_at", "2015-07-07 04:51:18.551585"], ["updated_at", "2015-07-07 04:51:18.551585"]]
15708
+  (0.2ms) RELEASE SAVEPOINT active_record_1
15709
+ SQL (0.5ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:18.555424', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
15710
+ Processing by AccountsController#show as HTML
15711
+ Parameters: {"id"=>"1"}
15712
+  (0.1ms) SAVEPOINT active_record_1
15713
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') LIMIT 1
15714
+ SQL (0.1ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:18.561418' WHERE "accounts"."id" = ? [["id", 1]]
15715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15716
+ Completed 200 OK in 4ms (ActiveRecord: 0.5ms)
15717
+  (0.8ms) rollback transaction
15718
+  (0.1ms) begin transaction
15719
+ Processing by AccountsController#index as HTML
15720
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
15721
+  (0.1ms) rollback transaction
15722
+  (0.1ms) begin transaction
15723
+ Processing by AccountsController#show as HTML
15724
+ Parameters: {"id"=>"1"}
15725
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
15726
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
15727
+  (0.1ms) rollback transaction
15728
+  (0.1ms) begin transaction
15729
+  (0.1ms) SAVEPOINT active_record_1
15730
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
15731
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15732
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "LRs9HpSRwimYKqeDxPaxB35WPvdRPkc1sf1py3fRyMwr"]]
15733
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$ccB7m.XYkv0EzSJ38AwgWeZO0q/qIv1IyCcdbwWzys1Tggq51XMka"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.577896"], ["auth_token", "LRs9HpSRwimYKqeDxPaxB35WPvdRPkc1sf1py3fRyMwr"], ["auth_token_expires_at", "2015-07-08 04:51:18.580922"], ["created_at", "2015-07-07 04:51:18.581245"], ["updated_at", "2015-07-07 04:51:18.581245"]]
15734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15735
+ Processing by AccountsController#index as HTML
15736
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
15737
+  (0.7ms) rollback transaction
15738
+  (0.1ms) begin transaction
15739
+  (0.1ms) SAVEPOINT active_record_1
15740
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
15741
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15742
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "g9ukQF5ovWMNAgwUkaekK1x6pwGzisNxusox1jmXM8Yr"]]
15743
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.4@baz.org"], ["password_digest", "$2a$04$HkckNgytSf/DCl1evLvN.eM71BhMwFmVC6y6JX4IlluQYgxo/uHIy"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.592091"], ["auth_token", "g9ukQF5ovWMNAgwUkaekK1x6pwGzisNxusox1jmXM8Yr"], ["auth_token_expires_at", "2015-07-08 04:51:18.595409"], ["created_at", "2015-07-07 04:51:18.595631"], ["updated_at", "2015-07-07 04:51:18.595631"]]
15744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15745
+ Processing by AccountsController#show as HTML
15746
+ Parameters: {"id"=>"1"}
15747
+  (0.1ms) SAVEPOINT active_record_1
15748
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.4@baz.org') LIMIT 1
15749
+ SQL (0.6ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:18.600460' WHERE "accounts"."id" = ? [["id", 1]]
15750
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15751
+ Filter chain halted as :enforce_activation! rendered or redirected
15752
+ Completed 403 Forbidden in 4ms (ActiveRecord: 1.0ms)
15753
+  (1.0ms) rollback transaction
15754
+  (0.2ms) begin transaction
15755
+  (0.2ms) rollback transaction
15756
+  (0.1ms) begin transaction
15757
+  (0.1ms) SAVEPOINT active_record_1
15758
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
15759
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15760
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "qNYRx7pNrnNe9ivfys7h8yHavfrPy2qbfpudS9Dyzvxr"]]
15761
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.5@baz.org"], ["password_digest", "$2a$04$Wy.pnQliRG3F6GKwnrCdm.yu4o/M4.O1IsBgsWqx/B7ILw65cqOAi"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.615375"], ["auth_token", "qNYRx7pNrnNe9ivfys7h8yHavfrPy2qbfpudS9Dyzvxr"], ["auth_token_expires_at", "2015-07-08 04:51:18.618781"], ["created_at", "2015-07-07 04:51:18.619054"], ["updated_at", "2015-07-07 04:51:18.619054"]]
15762
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15763
+ Processing by AccountsController#show as HTML
15764
+ Parameters: {"id"=>"1"}
15765
+  (0.1ms) SAVEPOINT active_record_1
15766
+ Account Load (0.4ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.5@baz.org') LIMIT 1
15767
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:18.627102' WHERE "accounts"."id" = ? [["id", 1]]
15768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15769
+ Filter chain halted as :enforce_activation! rendered or redirected
15770
+ Completed 403 Forbidden in 4ms (ActiveRecord: 1.1ms)
15771
+  (0.8ms) rollback transaction
15772
+  (0.1ms) begin transaction
15773
+  (0.1ms) SAVEPOINT active_record_1
15774
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
15775
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15776
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
15777
+  (0.1ms) rollback transaction
15778
+  (0.1ms) begin transaction
15779
+  (0.1ms) SAVEPOINT active_record_1
15780
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
15781
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15782
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zBkVqJfJBhHCLw59yZw3xiKT9NryjG5pz2gZqwvqydwr"]]
15783
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$DudUu4leh7iWhJnoBLjGq.cSdlUCMW6UvgdCmGT7s4w/6lUpI05v."], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.669133"], ["auth_token", "zBkVqJfJBhHCLw59yZw3xiKT9NryjG5pz2gZqwvqydwr"], ["auth_token_expires_at", "2015-07-08 04:51:18.672077"], ["created_at", "2015-07-07 04:51:18.672332"], ["updated_at", "2015-07-07 04:51:18.672332"]]
15784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15785
+  (0.1ms) SAVEPOINT active_record_1
15786
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
15787
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15788
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15789
+  (0.5ms) rollback transaction
15790
+  (0.1ms) begin transaction
15791
+  (0.1ms) SAVEPOINT active_record_1
15792
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
15793
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15794
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15795
+  (0.1ms) rollback transaction
15796
+  (0.1ms) begin transaction
15797
+  (0.1ms) SAVEPOINT active_record_1
15798
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
15799
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15800
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15801
+  (0.1ms) rollback transaction
15802
+  (0.1ms) begin transaction
15803
+  (0.0ms) SAVEPOINT active_record_1
15804
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
15805
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15806
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15807
+  (0.1ms) rollback transaction
15808
+  (0.1ms) begin transaction
15809
+  (0.3ms) SAVEPOINT active_record_1
15810
+ Account Exists (0.6ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
15811
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15812
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "zQB5Pu5zJKQj8LrYzgk95Fs5bLsjafLexz2Dc7spsSYr"]]
15813
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$nY9RzLsvwpdMqFzsdXvco.GfQAZWWGDp98r1cNV9yKJ.jB5Zh/sW."], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.708367"], ["auth_token", "zQB5Pu5zJKQj8LrYzgk95Fs5bLsjafLexz2Dc7spsSYr"], ["auth_token_expires_at", "2015-07-08 04:51:18.714510"], ["created_at", "2015-07-07 04:51:18.714862"], ["updated_at", "2015-07-07 04:51:18.714862"]]
15814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15815
+  (0.0ms) SAVEPOINT active_record_1
15816
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.9@baz.org' AND "accounts"."id" != 1) LIMIT 1
15817
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
15818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15819
+  (0.1ms) SAVEPOINT active_record_1
15820
+ SQL (0.7ms) UPDATE "accounts" SET "password_digest" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["password_digest", nil], ["updated_at", "2015-07-07 04:51:18.722796"], ["id", 1]]
15821
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15822
+  (1.3ms) rollback transaction
15823
+  (0.1ms) begin transaction
15824
+  (0.2ms) SAVEPOINT active_record_1
15825
+ Account Exists (1.0ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
15826
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15827
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "hgADxXAxqvFTHPmHRxtxbUzJsx1jXavYxppAbivjWzYr"]]
15828
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$6CS0.G2fUEUSAfNf/sIYpeuMueGJMp.ctVPGKWLgygshqnAdZscle"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.734272"], ["auth_token", "hgADxXAxqvFTHPmHRxtxbUzJsx1jXavYxppAbivjWzYr"], ["auth_token_expires_at", "2015-07-08 04:51:18.740868"], ["created_at", "2015-07-07 04:51:18.741149"], ["updated_at", "2015-07-07 04:51:18.741149"]]
15829
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15830
+  (0.0ms) SAVEPOINT active_record_1
15831
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.10@baz.org' AND "accounts"."id" != 1) LIMIT 1
15832
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
15833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15834
+  (0.0ms) SAVEPOINT active_record_1
15835
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.10@baz.org' AND "accounts"."id" != 1) LIMIT 1
15836
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
15837
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15838
+  (0.5ms) rollback transaction
15839
+  (0.2ms) begin transaction
15840
+  (0.1ms) SAVEPOINT active_record_1
15841
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
15842
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
15843
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "k5sgbk8WBLLwFjSVza8u4yiQ3cs4mMxFpvrs1zndEA4r"]]
15844
+ SQL (0.7ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$5SeA7vK0pCyqij7eAIikyeZ36qNpnYtlHngF7TRIZhSkNMMk1AMyK"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:51:18.758583"], ["auth_token", "k5sgbk8WBLLwFjSVza8u4yiQ3cs4mMxFpvrs1zndEA4r"], ["auth_token_expires_at", "2015-07-08 04:51:18.761432"], ["created_at", "2015-07-07 04:51:18.761708"], ["updated_at", "2015-07-07 04:51:18.761708"]]
15845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15846
+  (0.0ms) SAVEPOINT active_record_1
15847
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.11@baz.org' AND "accounts"."id" != 1) LIMIT 1
15848
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
15849
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15850
+  (0.0ms) SAVEPOINT active_record_1
15851
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.11@baz.org' AND "accounts"."id" != 1) LIMIT 1
15852
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
15853
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15854
+  (0.7ms) rollback transaction
15855
+  (0.1ms) begin transaction
15856
+  (0.1ms) SAVEPOINT active_record_1
15857
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
15858
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
15859
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "L1EyTmsYyu7UR7MokTbCiHs3D7P1bV4RtzsxV1BakTor"]]
15860
+ SQL (0.7ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$mc28ovHPchXYPlo72rUWl.hmKfwcem6IOSbVTk67T8gufjnXDIfaG"], ["activation_token", "my_token"], ["activation_token_expires_at", "2015-07-07 05:51:18.776666"], ["auth_token", "L1EyTmsYyu7UR7MokTbCiHs3D7P1bV4RtzsxV1BakTor"], ["auth_token_expires_at", "2015-07-08 04:51:18.781332"], ["created_at", "2015-07-07 04:51:18.781533"], ["updated_at", "2015-07-07 04:51:18.781533"]]
15861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15862
+  (0.0ms) SAVEPOINT active_record_1
15863
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.12@baz.org' AND "accounts"."id" != 1) LIMIT 1
15864
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'my_token' AND "accounts"."id" != 1) LIMIT 1
15865
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15866
+  (0.5ms) rollback transaction
15867
+  (0.1ms) begin transaction
15868
+  (0.1ms) SAVEPOINT active_record_1
15869
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
15870
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
15871
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15872
+  (0.1ms) SAVEPOINT active_record_1
15873
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
15874
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
15875
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15876
+  (0.1ms) rollback transaction
15877
+  (0.2ms) begin transaction
15878
+  (0.1ms) SAVEPOINT active_record_1
15879
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
15880
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
15881
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15882
+  (0.1ms) SAVEPOINT active_record_1
15883
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
15884
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
15885
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15886
+  (0.4ms) rollback transaction
15887
+  (0.2ms) begin transaction
15888
+  (0.1ms) SAVEPOINT active_record_1
15889
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
15890
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
15891
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15892
+  (0.0ms) SAVEPOINT active_record_1
15893
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
15894
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
15895
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15896
+  (0.1ms) rollback transaction
15897
+  (0.1ms) begin transaction
15898
+  (0.1ms) SAVEPOINT active_record_1
15899
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
15900
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
15901
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15902
+  (0.0ms) SAVEPOINT active_record_1
15903
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
15904
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
15905
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15906
+  (0.1ms) rollback transaction
15907
+  (0.0ms) begin transaction
15908
+  (0.1ms) SAVEPOINT active_record_1
15909
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
15910
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
15911
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Hj7qd7vQbjM8qcebzy6Ce27H9ZBXcBLWVXLHmdpmyD8r"]]
15912
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$WF83dw3ILGvNcu/Ok2FwA.VFuFINKxVwkBOeLx1e4vbFKYI5lSxgm"], ["activation_token", "my_token"], ["activation_token_expires_at", "2015-07-07 05:51:18.849364"], ["auth_token", "Hj7qd7vQbjM8qcebzy6Ce27H9ZBXcBLWVXLHmdpmyD8r"], ["auth_token_expires_at", "2015-07-08 04:51:18.855809"], ["created_at", "2015-07-07 04:51:18.856210"], ["updated_at", "2015-07-07 04:51:18.856210"]]
15913
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15914
+  (0.1ms) SAVEPOINT active_record_1
15915
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.17@baz.org' AND "accounts"."id" != 1) LIMIT 1
15916
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'my_token' AND "accounts"."id" != 1) LIMIT 1
15917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15918
+  (0.1ms) SAVEPOINT active_record_1
15919
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
15920
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
15921
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15922
+  (0.5ms) rollback transaction
15923
+  (0.1ms) begin transaction
15924
+  (0.1ms) SAVEPOINT active_record_1
15925
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
15926
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15927
+  (0.1ms) SAVEPOINT active_record_1
15928
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
15929
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15930
+  (0.1ms) rollback transaction
15931
+  (0.1ms) begin transaction
15932
+  (0.2ms) SAVEPOINT active_record_1
15933
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
15934
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15935
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "4mBSJsq3M1nxYbVbdggqUghdoDb1upe4hNVtSA7ieuwr"]]
15936
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$jwc3rzL6hn.g/NP3/j3q2ecKPeFf2gPoRlTPvJ9aVuqKLQqgP/Dxu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:18.887649"], ["auth_token_expires_at", "2015-07-08 04:51:18.895533"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:18.887605"], ["auth_token", "4mBSJsq3M1nxYbVbdggqUghdoDb1upe4hNVtSA7ieuwr"], ["created_at", "2015-07-07 04:51:18.895800"], ["updated_at", "2015-07-07 04:51:18.895800"]]
15937
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15938
+  (1.8ms) rollback transaction
15939
+  (0.1ms) begin transaction
15940
+  (0.1ms) SAVEPOINT active_record_1
15941
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
15942
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15943
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$oA9Wew9MD8AAiQ7xG.rUD.ctgyDWDQxbhweyJPz0F91z8nvm6/0te"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:18.906187"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:18.905779"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:18.906112"], ["created_at", "2015-07-07 04:51:18.913915"], ["updated_at", "2015-07-07 04:51:18.913915"]]
15944
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15945
+  (0.6ms) rollback transaction
15946
+  (0.1ms) begin transaction
15947
+  (0.9ms) SAVEPOINT active_record_1
15948
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
15949
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15950
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$z38pNE/oL5mocSsVRkOl9.2kFLtEF0WqO8Obwqz7ZInJfOawacLw6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:18.919287"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:18.919087"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:18.919240"], ["created_at", "2015-07-07 04:51:18.928786"], ["updated_at", "2015-07-07 04:51:18.928786"]]
15951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15952
+  (0.7ms) rollback transaction
15953
+  (0.1ms) begin transaction
15954
+  (0.1ms) SAVEPOINT active_record_1
15955
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.23@baz.org' LIMIT 1
15956
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15957
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.23@baz.org"], ["password_digest", "$2a$04$6znCZWnvxzutr0tnv6.O0O.tMNyUd4XLvNx0u/1moqE8Wp6B/3LCy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:18.933415"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:18.933229"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:18.933380"], ["created_at", "2015-07-07 04:51:18.941659"], ["updated_at", "2015-07-07 04:51:18.941659"]]
15958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15959
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "8gCogjd6xeJ7gVmKhfV9q68gcYG8ngrb6HrYvnda29zr"]]
15960
+  (0.5ms) rollback transaction
15961
+  (0.1ms) begin transaction
15962
+  (0.1ms) SAVEPOINT active_record_1
15963
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.24@baz.org' LIMIT 1
15964
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15965
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.24@baz.org"], ["password_digest", "$2a$04$2g25GJI4SZEzBWYLm6KT6OXMTeKIIM90HJY4lfWbUmQ/pBc/Q2tK."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:18.947611"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:18.947437"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:18.947581"], ["created_at", "2015-07-07 04:51:18.956555"], ["updated_at", "2015-07-07 04:51:18.956555"]]
15966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15967
+  (0.6ms) rollback transaction
15968
+  (0.1ms) begin transaction
15969
+  (0.1ms) SAVEPOINT active_record_1
15970
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.25@baz.org' LIMIT 1
15971
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15972
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.25@baz.org"], ["password_digest", "$2a$04$V6VCvlV0B3lj4.2BdZtWb.q5cgOi5KWuVasXCwCrYRKD7adokKe3W"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:18.960378"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:18.960253"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:18.960356"], ["created_at", "2015-07-07 04:51:18.966441"], ["updated_at", "2015-07-07 04:51:18.966441"]]
15973
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15974
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "2vz7x8JvfNbDKSXcvSgbYNqNYoUfzGzS8LbzHwaxyqkr"]]
15975
+  (0.6ms) rollback transaction
15976
+  (0.1ms) begin transaction
15977
+  (0.1ms) SAVEPOINT active_record_1
15978
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.26@baz.org' LIMIT 1
15979
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15980
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.26@baz.org"], ["password_digest", "$2a$04$gKhttXaxqAM7DBsS8GTCS.DMeLCvKYFOtBbtdTNhSlcS4LLKR2742"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:18.975703"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:18.975556"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:18.975679"], ["created_at", "2015-07-07 04:51:18.981401"], ["updated_at", "2015-07-07 04:51:18.981401"]]
15981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15982
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "8shAhnpxC8AYpgNAezTF1Qh1PYrBXhwnwDZQJ2mp2tYr"]]
15983
+  (0.5ms) rollback transaction
15984
+  (0.1ms) begin transaction
15985
+  (0.1ms) SAVEPOINT active_record_1
15986
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.27@baz.org' LIMIT 1
15987
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15988
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.27@baz.org"], ["password_digest", "$2a$04$41gjrgP5d8jEPbZR4Cz.su/ATHoeTiwJXGhtkgO6bd12eSvCfAa86"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.006225"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.005608"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.006176"], ["created_at", "2015-07-07 04:51:19.014495"], ["updated_at", "2015-07-07 04:51:19.014495"]]
15989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15990
+  (0.4ms) rollback transaction
15991
+  (0.1ms) begin transaction
15992
+  (0.1ms) SAVEPOINT active_record_1
15993
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.28@baz.org' LIMIT 1
15994
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
15995
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.28@baz.org"], ["password_digest", "$2a$04$Qa5fZ9htqFjqz3OmMliyRufTBIYyUFijSwzGZgYgaYAs77pCHOztW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.018056"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.017906"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.018029"], ["created_at", "2015-07-07 04:51:19.024713"], ["updated_at", "2015-07-07 04:51:19.024713"]]
15996
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15997
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "nxy9VtyBpkKjpsAm9KMEMd1zKiBpycFHuH4f6V87XJzr"]]
15998
+  (0.1ms) SAVEPOINT active_record_1
15999
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "nxy9VtyBpkKjpsAm9KMEMd1zKiBpycFHuH4f6V87XJzr"], ["auth_token_expires_at", "2015-07-08 04:51:19.028911"], ["updated_at", "2015-07-07 04:51:19.029522"], ["id", 1]]
16000
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16001
+  (1.2ms) rollback transaction
16002
+  (0.1ms) begin transaction
16003
+  (0.1ms) SAVEPOINT active_record_1
16004
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.29@baz.org' LIMIT 1
16005
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16006
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.29@baz.org"], ["password_digest", "$2a$04$zsEGpzkSHa/ZW/HQQ7r5e.03qzw/Km1/MHfK/KVuQsXfZtCVjKuLO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.034867"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.034695"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.034843"], ["created_at", "2015-07-07 04:51:19.042714"], ["updated_at", "2015-07-07 04:51:19.042714"]]
16007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16008
+  (0.5ms) rollback transaction
16009
+  (0.1ms) begin transaction
16010
+  (0.1ms) SAVEPOINT active_record_1
16011
+ Account Exists (0.9ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.30@baz.org' LIMIT 1
16012
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16013
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.30@baz.org"], ["password_digest", "$2a$04$2kMIj7qREao7TRl.L3/bW.aBXVs6t5tHiT9kB89hhhlYDP3R.zMau"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.046386"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.046261"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.046364"], ["created_at", "2015-07-07 04:51:19.055942"], ["updated_at", "2015-07-07 04:51:19.055942"]]
16014
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16015
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "KWp9aFb3gczy8BjDActqzfzQmN49fXcqxxADf4nYrvcr"]]
16016
+  (0.0ms) SAVEPOINT active_record_1
16017
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "KWp9aFb3gczy8BjDActqzfzQmN49fXcqxxADf4nYrvcr"], ["auth_token_expires_at", "2015-07-08 04:51:19.059234"], ["updated_at", "2015-07-07 04:51:19.059692"], ["id", 1]]
16018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16019
+  (0.8ms) rollback transaction
16020
+  (0.1ms) begin transaction
16021
+  (0.1ms) SAVEPOINT active_record_1
16022
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.31@baz.org' LIMIT 1
16023
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16024
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.31@baz.org"], ["password_digest", "$2a$04$5ydkZjkXwsQGF6B14ItGueJkF3JVQfNb8FUBmZjdRX1vWE/8ww81u"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.063435"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.063307"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.063412"], ["created_at", "2015-07-07 04:51:19.068526"], ["updated_at", "2015-07-07 04:51:19.068526"]]
16025
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16026
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "jsZAm2aws7nhnwj57TNgPq9sc6Srmx6pNosG4QnqTy4r"]]
16027
+  (0.5ms) rollback transaction
16028
+  (0.1ms) begin transaction
16029
+  (0.1ms) SAVEPOINT active_record_1
16030
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.32@baz.org' LIMIT 1
16031
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16032
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.32@baz.org"], ["password_digest", "$2a$04$H8d4oxXElnUS6vf.3.OwD.0KOFE1RzkcA/HVSc59ZYXqsC3/HPqiW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.075443"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-07 04:52:19.075376"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.075424"], ["created_at", "2015-07-07 04:51:19.083564"], ["updated_at", "2015-07-07 04:51:19.083564"]]
16033
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16034
+  (0.6ms) rollback transaction
16035
+  (0.1ms) begin transaction
16036
+  (0.1ms) SAVEPOINT active_record_1
16037
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.33@baz.org' LIMIT 1
16038
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16039
+ SQL (1.9ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.33@baz.org"], ["password_digest", "$2a$04$6qb.v0E8ORmAHqhSuOWlkuqRXseS.3Vu8UX6EDoz5MadJLtv/nfU6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.089240"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-07 04:50:19.089174"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.089222"], ["created_at", "2015-07-07 04:51:19.096881"], ["updated_at", "2015-07-07 04:51:19.096881"]]
16040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16041
+  (1.2ms) rollback transaction
16042
+  (0.1ms) begin transaction
16043
+  (0.2ms) SAVEPOINT active_record_1
16044
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.34@baz.org' LIMIT 1
16045
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16046
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.34@baz.org"], ["password_digest", "$2a$04$QeCoGbm4H4cO/rGuBzxhP.fsq8w686pYHUKMWEXc9hPcc3pawHuMu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.106644"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.106500"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.106618"], ["created_at", "2015-07-07 04:51:19.114064"], ["updated_at", "2015-07-07 04:51:19.114064"]]
16047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16048
+  (0.7ms) rollback transaction
16049
+  (0.1ms) begin transaction
16050
+  (0.3ms) SAVEPOINT active_record_1
16051
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.35@baz.org' LIMIT 1
16052
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16053
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.35@baz.org"], ["password_digest", "$2a$04$p16SR35Svl1qJ48TXNQ4VejuIa5E937mdNcHNvXy2wlaDsCfmvl1G"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.119821"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.119660"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.119795"], ["created_at", "2015-07-07 04:51:19.131062"], ["updated_at", "2015-07-07 04:51:19.131062"]]
16054
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16055
+  (0.7ms) rollback transaction
16056
+  (0.1ms) begin transaction
16057
+  (0.1ms) SAVEPOINT active_record_1
16058
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.36@baz.org' LIMIT 1
16059
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16060
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.36@baz.org"], ["password_digest", "$2a$04$V2E0hPLD7XsIRd9NgkKBreynDxzRq/8cOZ6NB9Vhc/C4g0tgd9Lhe"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.137069"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.136922"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.137045"], ["created_at", "2015-07-07 04:51:19.142968"], ["updated_at", "2015-07-07 04:51:19.142968"]]
16061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16062
+  (0.5ms) rollback transaction
16063
+  (0.2ms) begin transaction
16064
+  (0.1ms) SAVEPOINT active_record_1
16065
+ Account Exists (0.6ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.37@baz.org' LIMIT 1
16066
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16067
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.37@baz.org"], ["password_digest", "$2a$04$UsekIlPKIaJUL.rKeJtYFe.uTKgHpHW0PaOanI409EU6eLBPcJHlu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.147435"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.147302"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 03:51:19.147412"], ["created_at", "2015-07-07 04:51:19.157664"], ["updated_at", "2015-07-07 04:51:19.157664"]]
16068
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16069
+  (0.5ms) rollback transaction
16070
+  (0.1ms) begin transaction
16071
+  (0.1ms) SAVEPOINT active_record_1
16072
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.38@baz.org' LIMIT 1
16073
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16074
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.38@baz.org"], ["password_digest", "$2a$04$NYeDsKp45mcjJe/8zYjsyufDHbqms/NzUOEFh9kd58q3bnSt6mcv."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.161799"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.161666"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.161776"], ["created_at", "2015-07-07 04:51:19.167886"], ["updated_at", "2015-07-07 04:51:19.167886"]]
16075
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16076
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "PjR4V3wQzN4UJXP5bQWJAFSsaFQGsTPUnnhfyTDyHyQr"]]
16077
+  (0.6ms) rollback transaction
16078
+  (0.1ms) begin transaction
16079
+  (0.1ms) SAVEPOINT active_record_1
16080
+ Account Exists (1.0ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.39@baz.org' LIMIT 1
16081
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16082
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.39@baz.org"], ["password_digest", "$2a$04$3UJX63hGaJAg.DVZKUQvl.AF2lQHPW/JiEOZZzdlWcHu5Xv4NIQOO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.177251"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.177126"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.177228"], ["created_at", "2015-07-07 04:51:19.185320"], ["updated_at", "2015-07-07 04:51:19.185320"]]
16083
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16084
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "fUXadhFuqCoTzBSzb8cBxthevZgqRZT13VBWp8t6GGAr"]]
16085
+  (0.5ms) rollback transaction
16086
+  (0.4ms) begin transaction
16087
+  (0.1ms) SAVEPOINT active_record_1
16088
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.40@baz.org' LIMIT 1
16089
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16090
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.40@baz.org"], ["password_digest", "$2a$04$zVmVD3SnUiToOMIERY2q.Oy1u6UrNIU4TXohDsiiWQG.M3OdJJXEK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.196825"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.196553"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.196752"], ["created_at", "2015-07-07 04:51:19.205257"], ["updated_at", "2015-07-07 04:51:19.205257"]]
16091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16092
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "JDJbDAvdR4yKsB7oyy9asoWDbpCPsgoVqnp16mdTuikr"]]
16093
+  (0.7ms) rollback transaction
16094
+  (0.1ms) begin transaction
16095
+  (0.5ms) SAVEPOINT active_record_1
16096
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.41@baz.org' LIMIT 1
16097
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16098
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.41@baz.org"], ["password_digest", "$2a$04$2Bj.0X9kbJZoNzqwTMJjyupo1pqxgCWbs6ehrwMmXcIdrCK9dgl8y"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.213899"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.213746"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.213872"], ["created_at", "2015-07-07 04:51:19.224201"], ["updated_at", "2015-07-07 04:51:19.224201"]]
16099
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16100
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "NnsfkJxbZbFx4wTM33PSNfpN39233VAb731o5KVYFJwr"]]
16101
+  (0.6ms) rollback transaction
16102
+  (0.1ms) begin transaction
16103
+  (0.1ms) SAVEPOINT active_record_1
16104
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.42@baz.org' LIMIT 1
16105
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16106
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.42@baz.org"], ["password_digest", "$2a$04$5M89IkZI/rCcyeMzASnPYuEgFqsqd4NZLg5pfFyYHHzD4Qtvu.UnW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.229142"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.228975"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.229118"], ["created_at", "2015-07-07 04:51:19.238010"], ["updated_at", "2015-07-07 04:51:19.238010"]]
16107
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16108
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "cJbfJf3wpzCLJ9obmji6eR2DrweTpvkyRi473GfRiNYr"]]
16109
+  (0.5ms) rollback transaction
16110
+  (0.1ms) begin transaction
16111
+  (0.0ms) SAVEPOINT active_record_1
16112
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.43@baz.org' LIMIT 1
16113
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16114
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.43@baz.org"], ["password_digest", "$2a$04$cz65BW/gzcOIS3/CBMHixu.vHE6ixQUaZB8WoA0vL6MThST8VrIFW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.245188"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.245043"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.245162"], ["created_at", "2015-07-07 04:51:19.250280"], ["updated_at", "2015-07-07 04:51:19.250280"]]
16115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16116
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "Y8AycEG2Emk5MafyuoJqyN1qUUsCjqyJirwpNwqtM7Mr"]]
16117
+  (0.6ms) rollback transaction
16118
+  (0.1ms) begin transaction
16119
+  (0.1ms) SAVEPOINT active_record_1
16120
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.44@baz.org' LIMIT 1
16121
+ Account Exists (0.8ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16122
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.44@baz.org"], ["password_digest", "$2a$04$XT.AFcs8n1oHVwLB/ivvR.KnPVht.C75PKEzpmiR3Eq3BdednyPQS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.257728"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.257604"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.257706"], ["created_at", "2015-07-07 04:51:19.264488"], ["updated_at", "2015-07-07 04:51:19.264488"]]
16123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16124
+ SQL (0.6ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16125
+  (0.9ms) rollback transaction
16126
+  (0.1ms) begin transaction
16127
+  (0.1ms) SAVEPOINT active_record_1
16128
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.45@baz.org' LIMIT 1
16129
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16130
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.45@baz.org"], ["password_digest", "$2a$04$S8SQOUvm8CMNM/hFeuwPzuKcnbMbUUbKE/xf7VCOolcQ1.9j4hYIK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.273126"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.273004"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.273106"], ["created_at", "2015-07-07 04:51:19.279730"], ["updated_at", "2015-07-07 04:51:19.279730"]]
16131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16132
+ SQL (0.5ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16133
+  (0.9ms) rollback transaction
16134
+  (0.5ms) begin transaction
16135
+  (0.1ms) SAVEPOINT active_record_1
16136
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.46@baz.org' LIMIT 1
16137
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16138
+ SQL (1.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.46@baz.org"], ["password_digest", "$2a$04$5Uq/XicQd6MsQscqCZ31LOH0Qpl7lVLr57eyx0ZKpqBUmmPKm0BOu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.288149"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.288004"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.288125"], ["created_at", "2015-07-07 04:51:19.295800"], ["updated_at", "2015-07-07 04:51:19.295800"]]
16139
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16140
+ SQL (0.8ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16141
+  (1.7ms) rollback transaction
16142
+  (0.2ms) begin transaction
16143
+  (0.1ms) SAVEPOINT active_record_1
16144
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.47@baz.org' LIMIT 1
16145
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16146
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.47@baz.org"], ["password_digest", "$2a$04$4qlE.wXC85IqrHW2wfwt9.Ii9NSH04lIR7xzRpW2Bwx9vlAz3oxkq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.308029"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.307718"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.307991"], ["created_at", "2015-07-07 04:51:19.314950"], ["updated_at", "2015-07-07 04:51:19.314950"]]
16147
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16148
+  (0.5ms) rollback transaction
16149
+  (0.1ms) begin transaction
16150
+  (0.1ms) SAVEPOINT active_record_1
16151
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.48@baz.org' LIMIT 1
16152
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16153
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.48@baz.org"], ["password_digest", "$2a$04$9GmdGlwS88OGnyTWh/ihqeI0ZZICEni4SwQjX0O8brXF40I5x368q"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.318858"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.318713"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.318831"], ["created_at", "2015-07-07 04:51:19.325190"], ["updated_at", "2015-07-07 04:51:19.325190"]]
16154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16155
+  (0.4ms) rollback transaction
16156
+  (0.1ms) begin transaction
16157
+  (0.1ms) SAVEPOINT active_record_1
16158
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.49@baz.org' LIMIT 1
16159
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16160
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.49@baz.org"], ["password_digest", "$2a$04$nSMrAXjdqz0DAQxMnK.jHuGe6O9H48WXQnyLRKBeTb5PvocyU3d0q"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.330312"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.330054"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.330155"], ["created_at", "2015-07-07 04:51:19.339149"], ["updated_at", "2015-07-07 04:51:19.339149"]]
16161
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16162
+  (0.6ms) rollback transaction
16163
+  (0.1ms) begin transaction
16164
+  (0.1ms) SAVEPOINT active_record_1
16165
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.50@baz.org' LIMIT 1
16166
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16167
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.50@baz.org"], ["password_digest", "$2a$04$pm5P2dyWCOz.CFs1ZJPvS.IKeqJAPlieEMyvmu2AGHxlOxZJfoge6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.344297"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.344360"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.344450"], ["created_at", "2015-07-07 04:51:19.353403"], ["updated_at", "2015-07-07 04:51:19.353403"]]
16168
+  (0.4ms) RELEASE SAVEPOINT active_record_1
16169
+  (0.7ms) rollback transaction
16170
+  (0.1ms) begin transaction
16171
+  (0.1ms) SAVEPOINT active_record_1
16172
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.51@baz.org' LIMIT 1
16173
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16174
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.51@baz.org"], ["password_digest", "$2a$04$gDqr.rf8sSVHttlFycO/XOQX7Xz/Swc/GT.gVS54DvAHvXYO8aFua"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.358581"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.358420"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.358559"], ["created_at", "2015-07-07 04:51:19.364440"], ["updated_at", "2015-07-07 04:51:19.364440"]]
16175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16176
+  (0.5ms) rollback transaction
16177
+  (0.2ms) begin transaction
16178
+  (0.1ms) SAVEPOINT active_record_1
16179
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.52@baz.org' LIMIT 1
16180
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16181
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.52@baz.org"], ["password_digest", "$2a$04$1Eneos8F1URgPXjsVS9/XuZjTOBX4BqmXDWWcNh19pTXhxLb2b18."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.369380"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.369192"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.369343"], ["created_at", "2015-07-07 04:51:19.376867"], ["updated_at", "2015-07-07 04:51:19.376867"]]
16182
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16183
+ SQL (0.4ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:19.379405', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16184
+  (1.0ms) rollback transaction
16185
+  (0.1ms) begin transaction
16186
+  (0.1ms) SAVEPOINT active_record_1
16187
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.53@baz.org' LIMIT 1
16188
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16189
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.53@baz.org"], ["password_digest", "$2a$04$heAir9WQSBfc6s9T9o2OkuNYXAXbDl2We2neo7PkAoO80d.WgTkLu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.383851"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.383690"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.383821"], ["created_at", "2015-07-07 04:51:19.391110"], ["updated_at", "2015-07-07 04:51:19.391110"]]
16190
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16191
+ SQL (0.5ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:19.393600', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16192
+  (0.9ms) rollback transaction
16193
+  (0.1ms) begin transaction
16194
+  (0.2ms) SAVEPOINT active_record_1
16195
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.54@baz.org' LIMIT 1
16196
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16197
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.54@baz.org"], ["password_digest", "$2a$04$bBPt6HJRHOD74pe4i2rp9.CSCJs1z9H1Y8gj6xUuZadmSLDJea3Y."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.397292"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.397154"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.397270"], ["created_at", "2015-07-07 04:51:19.410104"], ["updated_at", "2015-07-07 04:51:19.410104"]]
16198
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16199
+ SQL (0.5ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:19.412006', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16200
+  (0.7ms) rollback transaction
16201
+  (0.1ms) begin transaction
16202
+  (0.1ms) SAVEPOINT active_record_1
16203
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.55@baz.org' LIMIT 1
16204
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16205
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.55@baz.org"], ["password_digest", "$2a$04$Dtldh4TFJ9mi.ARW.6INuuDuMg5tivyYkAtdPWK/7Qi5y4ScBnUii"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.415714"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.415578"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.415690"], ["created_at", "2015-07-07 04:51:19.425743"], ["updated_at", "2015-07-07 04:51:19.425743"]]
16206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16207
+ SQL (0.4ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:19.427478', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16208
+  (0.8ms) rollback transaction
16209
+  (0.1ms) begin transaction
16210
+  (0.3ms) SAVEPOINT active_record_1
16211
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.56@baz.org' LIMIT 1
16212
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16213
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.56@baz.org"], ["password_digest", "$2a$04$3h/8eKMMBiDcVV3Xpn/Fmutk.zs5EWvV2q9Gl9Km9akCf0Ar4JpT."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.430594"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.430424"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.430572"], ["created_at", "2015-07-07 04:51:19.441015"], ["updated_at", "2015-07-07 04:51:19.441015"]]
16214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16215
+ SQL (0.3ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:19.443478', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16216
+  (0.9ms) rollback transaction
16217
+  (0.1ms) begin transaction
16218
+  (0.1ms) SAVEPOINT active_record_1
16219
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.57@baz.org' LIMIT 1
16220
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16221
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.57@baz.org"], ["password_digest", "$2a$04$lCw4/Tk2ok7nPcVna0944OAGBpsZKqyku8IcHU4hZLyTBo0eUqhMG"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.446690"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.446497"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.446654"], ["created_at", "2015-07-07 04:51:19.453824"], ["updated_at", "2015-07-07 04:51:19.453824"]]
16222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16223
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "AswgphTwXSMRFqBi9swes25ipNQq2pepxyJqHG8nZTwr"]]
16224
+  (0.6ms) rollback transaction
16225
+  (0.1ms) begin transaction
16226
+  (0.1ms) SAVEPOINT active_record_1
16227
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.58@baz.org' LIMIT 1
16228
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16229
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.58@baz.org"], ["password_digest", "$2a$04$hsvdUHjY/vHCyHLRJ.tZpeqcQlK.GVKG.1T6e6zj3PMWSxZ1N.ri6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.460459"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.460277"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.460429"], ["created_at", "2015-07-07 04:51:19.467419"], ["updated_at", "2015-07-07 04:51:19.467419"]]
16230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16231
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "j17Jx6DbtvKrPrLqi2BXRjAaVw7kFKteFy2ezcEwfV8r"]]
16232
+  (0.9ms) rollback transaction
16233
+  (0.1ms) begin transaction
16234
+  (0.1ms) SAVEPOINT active_record_1
16235
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.59@baz.org' LIMIT 1
16236
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16237
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.59@baz.org"], ["password_digest", "$2a$04$0U/m4v8KRihlw8B8ih/9EeZpwOMChVEdczDMhM22vKFPYWSYEqD6u"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.475035"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.474894"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.475010"], ["created_at", "2015-07-07 04:51:19.480429"], ["updated_at", "2015-07-07 04:51:19.480429"]]
16238
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16239
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "RLcucfo9jpVxcWqhQXGbpfapdxziF5Hwi7DYCgQkxzxr"]]
16240
+  (0.5ms) rollback transaction
16241
+  (0.1ms) begin transaction
16242
+  (0.1ms) SAVEPOINT active_record_1
16243
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.60@baz.org' LIMIT 1
16244
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16245
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.60@baz.org"], ["password_digest", "$2a$04$NGdEDdiSBqoPatWAVpbJZ.Qdyp7MeLFhWBZsw55oyc/4WAMaxdAXa"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.488559"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.488310"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.488516"], ["created_at", "2015-07-07 04:51:19.496259"], ["updated_at", "2015-07-07 04:51:19.496259"]]
16246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16247
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "ivMG71SVZy91n2JDr6QyUvjzx75gvwWCqbeszmCHPcMr"]]
16248
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "cmesjERnsCdjsq6pR8i1b6QpgpoV8yKkuxMJdzbdtDzr"]]
16249
+  (0.6ms) rollback transaction
16250
+  (0.1ms) begin transaction
16251
+  (0.1ms) SAVEPOINT active_record_1
16252
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.61@baz.org' LIMIT 1
16253
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16254
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.61@baz.org"], ["password_digest", "$2a$04$0Gp2hnwpCty83MY0UahbL.9nFsXtGk9rrtNsq0EA5zxOQH9jZI.gW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.502007"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.501825"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.501974"], ["created_at", "2015-07-07 04:51:19.510601"], ["updated_at", "2015-07-07 04:51:19.510601"]]
16255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16256
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "6Znxs3N2bZxgxxYjg3kxW19xFXsuwtP3KX4Q9bpLRrQr"]]
16257
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "u8MuqcMnHNH8qvirj61UbrZedgKbjy6PQbT3UtUbXhQr"]]
16258
+  (0.5ms) rollback transaction
16259
+  (0.1ms) begin transaction
16260
+  (0.1ms) SAVEPOINT active_record_1
16261
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.62@baz.org' LIMIT 1
16262
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16263
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.62@baz.org"], ["password_digest", "$2a$04$Vm4bsgL1iKQTkJGEzjxB6eZs9Mw9KTPsfl7Ak4q8MhZs69T/haj0O"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.517364"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:51:19.517211"], ["auth_token_ttl", 3600], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.517336"], ["created_at", "2015-07-07 04:51:19.524039"], ["updated_at", "2015-07-07 04:51:19.524039"]]
16264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16265
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "KMXgXyPK5CfzbCuGxjoDfjssvzpgg7By2b3qvoq6YBgr"]]
16266
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "prpVQBcAHJDkarjyujznP2iGNzVpNdnjKSdjBBo5aPUr"]]
16267
+  (0.6ms) rollback transaction
16268
+  (0.1ms) begin transaction
16269
+  (0.1ms) SAVEPOINT active_record_1
16270
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16271
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16272
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$wOfDDPTQeqtUst2JOBdvAukIsEKrmp1ESuujg6co.HyjwZUOR2OMW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.529693"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.529556"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.529669"], ["created_at", "2015-07-07 04:51:19.535516"], ["updated_at", "2015-07-07 04:51:19.535516"]]
16273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16274
+  (0.6ms) rollback transaction
16275
+  (0.1ms) begin transaction
16276
+  (0.1ms) SAVEPOINT active_record_1
16277
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16278
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16279
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$/dHmsPhX942J1xrA1mKCxOQCT4cyOifa/ob11mMxHPDg0jhN0ree6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.542446"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.542243"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.542407"], ["created_at", "2015-07-07 04:51:19.548631"], ["updated_at", "2015-07-07 04:51:19.548631"]]
16280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16281
+  (0.5ms) rollback transaction
16282
+  (0.1ms) begin transaction
16283
+  (0.1ms) SAVEPOINT active_record_1
16284
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16285
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16286
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$qIEuQtX8Igedp20C7OAVvevhmTKQoAZxwUEv56rl/APampyHIAYkW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.552319"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.552083"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.552274"], ["created_at", "2015-07-07 04:51:19.561324"], ["updated_at", "2015-07-07 04:51:19.561324"]]
16287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16288
+  (0.1ms) SAVEPOINT active_record_1
16289
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16290
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:19.568991' WHERE "accounts"."id" = ? [["id", 1]]
16291
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16292
+  (0.9ms) rollback transaction
16293
+  (0.1ms) begin transaction
16294
+  (0.1ms) SAVEPOINT active_record_1
16295
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16296
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16297
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$PlBhlb5N8eQaWsarSkYqRO/GI2.o2fnLUrJr57juS0XRQoaDnqTNm"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.573079"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.572913"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.573050"], ["created_at", "2015-07-07 04:51:19.578795"], ["updated_at", "2015-07-07 04:51:19.578795"]]
16298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16299
+  (0.0ms) SAVEPOINT active_record_1
16300
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16301
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:19.582044' WHERE "accounts"."id" = ? [["id", 1]]
16302
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16303
+  (0.9ms) rollback transaction
16304
+  (0.1ms) begin transaction
16305
+  (0.1ms) SAVEPOINT active_record_1
16306
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16307
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16308
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "auth_token_ttl", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$9cFRHTX7ksRKGNfORCcC6OsfiGjGGu0wb9NSGMQhYAuUFxuOgF4uu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.586269"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.586117"], ["auth_token_ttl", 604800], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.586243"], ["created_at", "2015-07-07 04:51:19.593686"], ["updated_at", "2015-07-07 04:51:19.593686"]]
16309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16310
+  (0.0ms) SAVEPOINT active_record_1
16311
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16312
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:19.596179' WHERE "accounts"."id" = ? [["id", 1]]
16313
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16314
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."id" = ? LIMIT 1 [["id", 1]]
16315
+  (1.3ms) rollback transaction
16316
+  (0.1ms) begin transaction
16317
+  (0.1ms) SAVEPOINT active_record_1
16318
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16319
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16320
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$vWG3c38mglX.PnOzTV0quuwlfnu02bhMA3lQuYepap2gAPC5k6n/a"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.603504"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-06-30 04:51:19.603360"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.603473"], ["created_at", "2015-07-07 04:51:19.611650"], ["updated_at", "2015-07-07 04:51:19.611650"]]
16321
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16322
+  (0.0ms) SAVEPOINT active_record_1
16323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16324
+  (0.5ms) rollback transaction
16325
+  (0.1ms) begin transaction
16326
+  (0.1ms) SAVEPOINT active_record_1
16327
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16328
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16329
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$c6smkzqjXXY8EghOl5w8geuUsm8QdDy/FmkQCzR.GCWMcyTZagdQC"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.617105"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-06-30 04:51:19.616887"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.617059"], ["created_at", "2015-07-07 04:51:19.625429"], ["updated_at", "2015-07-07 04:51:19.625429"]]
16330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16331
+  (0.1ms) SAVEPOINT active_record_1
16332
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16333
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "gUxHhxyvTvyGDsSxMyH49VmEBPTahXQDitWc31s2ncUr"]]
16334
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "gUxHhxyvTvyGDsSxMyH49VmEBPTahXQDitWc31s2ncUr"], ["auth_token_expires_at", "2015-07-08 04:51:19.630961"], ["updated_at", "2015-07-07 04:51:19.631489"], ["id", 1]]
16335
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16336
+  (0.7ms) rollback transaction
16337
+  (0.2ms) begin transaction
16338
+  (0.1ms) SAVEPOINT active_record_1
16339
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16340
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16341
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$DVh9.ueDwKFoe7Lgd4adF.NfMkSh.6I7UWVUSdJaO.86lMBZ7etIi"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.636927"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.636689"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.636885"], ["created_at", "2015-07-07 04:51:19.644419"], ["updated_at", "2015-07-07 04:51:19.644419"]]
16342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16343
+  (0.1ms) SAVEPOINT active_record_1
16344
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16345
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:19.646722' WHERE "accounts"."id" = ? [["id", 1]]
16346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16347
+  (0.7ms) rollback transaction
16348
+  (0.1ms) begin transaction
16349
+  (0.1ms) SAVEPOINT active_record_1
16350
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16351
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16352
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$ghG75oGbiGSk64X5pZ9hHO9yUKmWhCiT0dN5tUAFy7I1WWQsZfChC"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.649397"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.649265"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.649371"], ["created_at", "2015-07-07 04:51:19.655665"], ["updated_at", "2015-07-07 04:51:19.655665"]]
16353
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16354
+  (0.0ms) SAVEPOINT active_record_1
16355
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16356
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:19.661202' WHERE "accounts"."id" = ? [["id", 1]]
16357
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16358
+  (0.6ms) rollback transaction
16359
+  (0.1ms) begin transaction
16360
+  (0.2ms) SAVEPOINT active_record_1
16361
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16362
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16363
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$pQLkzm89sLxyVCZfZtJBVeCxlEQj3K7Rhescx69Gh8fM8D4XEplRK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.664623"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.664473"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.664595"], ["created_at", "2015-07-07 04:51:19.671285"], ["updated_at", "2015-07-07 04:51:19.671285"]]
16364
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16365
+  (0.1ms) SAVEPOINT active_record_1
16366
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16367
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:51:19.675371' WHERE "accounts"."id" = ? [["id", 1]]
16368
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16369
+  (0.8ms) rollback transaction
16370
+  (0.1ms) begin transaction
16371
+  (0.2ms) SAVEPOINT active_record_1
16372
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16373
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16374
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$beODnQLhaXmfhCW4LLnkzOqbtVvufTfAb.uzVrp5Ut4cSFsJOOque"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.679450"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.679304"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.679427"], ["created_at", "2015-07-07 04:51:19.686332"], ["updated_at", "2015-07-07 04:51:19.686332"]]
16375
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16376
+  (0.1ms) SAVEPOINT active_record_1
16377
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16379
+  (0.6ms) rollback transaction
16380
+  (0.2ms) begin transaction
16381
+  (0.1ms) SAVEPOINT active_record_1
16382
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16383
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16384
+ SQL (1.0ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$vfELo2/SAXd3nqXjCpyIUeSFBWJS7RfCpA8Zxd517KKz/Ry74OCOS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.695953"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.695809"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.695927"], ["created_at", "2015-07-07 04:51:19.703527"], ["updated_at", "2015-07-07 04:51:19.703527"]]
16385
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16386
+  (0.0ms) SAVEPOINT active_record_1
16387
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16388
+ SQL (0.4ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:51:19.709241', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16389
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16390
+  (0.6ms) rollback transaction
16391
+  (0.1ms) begin transaction
16392
+  (0.1ms) SAVEPOINT active_record_1
16393
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16394
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16395
+ SQL (0.9ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$zrZssZh9TU3RwII8LE606.pVdRBCiy57xRs/oACHhFXpPid6HrIxO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-06 04:51:19.712600"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.712465"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.712573"], ["created_at", "2015-07-07 04:51:19.720504"], ["updated_at", "2015-07-07 04:51:19.720504"]]
16396
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16397
+  (0.1ms) SAVEPOINT active_record_1
16398
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16400
+  (0.6ms) rollback transaction
16401
+  (0.1ms) begin transaction
16402
+  (0.1ms) SAVEPOINT active_record_1
16403
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16404
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16405
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$9eFq.67IR6FORRiC.R.5LeboDDJDJdvs.qyyno2KhZRHESZKpvDOG"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.726982"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.726837"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.726954"], ["created_at", "2015-07-07 04:51:19.733344"], ["updated_at", "2015-07-07 04:51:19.733344"]]
16406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16407
+  (0.1ms) SAVEPOINT active_record_1
16408
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16410
+  (0.6ms) rollback transaction
16411
+  (0.1ms) begin transaction
16412
+  (0.1ms) SAVEPOINT active_record_1
16413
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16414
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16415
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$7m9sJx1/2Zft9a1Sg/7aiOEVBAIKI0Xn8nbbhrfESIBvvw422B7Xm"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.739954"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.739829"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.739931"], ["created_at", "2015-07-07 04:51:19.745899"], ["updated_at", "2015-07-07 04:51:19.745899"]]
16416
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16417
+  (0.1ms) SAVEPOINT active_record_1
16418
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'notmyemail@gmail.com') LIMIT 1
16419
+  (0.5ms) RELEASE SAVEPOINT active_record_1
16420
+  (0.5ms) rollback transaction
16421
+  (0.2ms) begin transaction
16422
+  (0.1ms) SAVEPOINT active_record_1
16423
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16424
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16425
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$zDg5gwphUQVkTN5YsaF.zOhXzCelUqKl4HopEwHCMSn0SGiPEuZW."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.753414"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.753219"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.753371"], ["created_at", "2015-07-07 04:51:19.760259"], ["updated_at", "2015-07-07 04:51:19.760259"]]
16426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16427
+  (0.1ms) SAVEPOINT active_record_1
16428
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16430
+  (0.4ms) rollback transaction
16431
+  (0.1ms) begin transaction
16432
+  (0.1ms) SAVEPOINT active_record_1
16433
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16434
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16435
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$T6gGcs3qNuoaQZy8rBuIH.Xta9q3XnisXMoRphVsAH9e.RjpccmBC"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.765685"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.765555"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.765661"], ["created_at", "2015-07-07 04:51:19.773358"], ["updated_at", "2015-07-07 04:51:19.773358"]]
16436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16437
+  (0.0ms) SAVEPOINT active_record_1
16438
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'bad_actor@gmail.com') LIMIT 1
16439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16440
+  (0.5ms) rollback transaction
16441
+  (0.1ms) begin transaction
16442
+  (0.1ms) SAVEPOINT active_record_1
16443
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16444
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16445
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$bH0/4LfA0858xs3mQuRQcu.SluiJXvsmB.r66qdoYgLTdMD0v.GCS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.778851"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.778721"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.778827"], ["created_at", "2015-07-07 04:51:19.787211"], ["updated_at", "2015-07-07 04:51:19.787211"]]
16446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16447
+  (0.1ms) SAVEPOINT active_record_1
16448
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16450
+  (0.4ms) rollback transaction
16451
+  (0.2ms) begin transaction
16452
+  (0.1ms) SAVEPOINT active_record_1
16453
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16454
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16455
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$UwOqO7a8cwF0uIyOfBDls.CdcLopljl1bc8oWXFsr31P4rvrKlKZa"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.792683"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.792520"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.792654"], ["created_at", "2015-07-07 04:51:19.798023"], ["updated_at", "2015-07-07 04:51:19.798023"]]
16456
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16457
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16458
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "f8BMTozgYvHUxAXsfPhehnJnxb5sz74puawFQ8SfDiMr"]]
16459
+  (0.2ms) SAVEPOINT active_record_1
16460
+ SQL (0.7ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "f8BMTozgYvHUxAXsfPhehnJnxb5sz74puawFQ8SfDiMr"], ["auth_token_expires_at", "2015-07-08 04:51:19.804247"], ["updated_at", "2015-07-07 04:51:19.805430"], ["id", 1]]
16461
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16462
+  (0.8ms) rollback transaction
16463
+  (0.1ms) begin transaction
16464
+  (0.1ms) SAVEPOINT active_record_1
16465
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16466
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16467
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$5uJNV5oiuI33hq.yByLYEeOgDqTioj8IDJDANGwGs5n756Y/2HNLq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.819562"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.811132"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.819508"], ["created_at", "2015-07-07 04:51:19.825939"], ["updated_at", "2015-07-07 04:51:19.825939"]]
16468
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16469
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
16470
+  (0.5ms) rollback transaction
16471
+  (0.1ms) begin transaction
16472
+  (0.1ms) SAVEPOINT active_record_1
16473
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16474
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16475
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$dDs4GwKOCmmB3Kt/l1VYFu/yTtR048NXOUeM0hc4yZC25xt/Ov8UK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:51:19.832501"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:51:19.832285"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:51:19.832475"], ["created_at", "2015-07-07 04:51:19.840666"], ["updated_at", "2015-07-07 04:51:19.840666"]]
16476
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16477
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
16478
+  (0.4ms) rollback transaction
16479
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
16480
+  (1.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "password_digest" varchar, "auth_token" varchar, "auth_token_expires_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "password_reset_token" varchar, "password_reset_token_expires_at" datetime, "activated_at" datetime, "activation_token" varchar, "activation_token_expires_at" datetime, "auth_token_ttl" integer DEFAULT 86400 NOT NULL) 
16481
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
16482
+  (0.1ms) select sqlite_version(*)
16483
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16484
+  (0.2ms) SELECT version FROM "schema_migrations"
16485
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150413161345')
16486
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127045508')
16487
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150210215727')
16488
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150211185152')
16489
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
16490
+  (0.1ms) begin transaction
16491
+  (0.1ms) SAVEPOINT active_record_1
16492
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
16493
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16494
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "TWdUjb7JuEVxZrXQawmD1ZjdkzUXMRQEsWWWTgyhpMzr"]]
16495
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$MHYeNoPGV1udXGuhjCtsjO8BsJ0j1JZQn/79N5d3zp9D30fFitaa."], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.591739"], ["auth_token", "TWdUjb7JuEVxZrXQawmD1ZjdkzUXMRQEsWWWTgyhpMzr"], ["auth_token_expires_at", "2015-07-08 04:56:12.611310"], ["created_at", "2015-07-07 04:56:12.611690"], ["updated_at", "2015-07-07 04:56:12.611690"]]
16496
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16497
+ SQL (0.3ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:12.613844', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16498
+ Processing by AccountsController#index as HTML
16499
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
16500
+  (0.8ms) rollback transaction
16501
+  (0.1ms) begin transaction
16502
+  (0.1ms) SAVEPOINT active_record_1
16503
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
16504
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16505
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "8AMzUMmn3pL3BvUQ9uk7aVmszCYhdoUfUKsH4HShNQzr"]]
16506
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$z25wk3ltKy0Do72YYV1iAexVjpDiiukb9HgvuJwdk.2JZyBl.nhiC"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.626317"], ["auth_token", "8AMzUMmn3pL3BvUQ9uk7aVmszCYhdoUfUKsH4HShNQzr"], ["auth_token_expires_at", "2015-07-08 04:56:12.630340"], ["created_at", "2015-07-07 04:56:12.630591"], ["updated_at", "2015-07-07 04:56:12.630591"]]
16507
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16508
+ SQL (0.6ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:12.633027', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16509
+ Processing by AccountsController#show as HTML
16510
+ Parameters: {"id"=>"1"}
16511
+  (0.1ms) SAVEPOINT active_record_1
16512
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') LIMIT 1
16513
+ SQL (0.1ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:12.637468' WHERE "accounts"."id" = ? [["id", 1]]
16514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16515
+ Completed 200 OK in 3ms (ActiveRecord: 0.4ms)
16516
+  (1.0ms) rollback transaction
16517
+  (0.1ms) begin transaction
16518
+ Processing by AccountsController#index as HTML
16519
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
16520
+  (0.1ms) rollback transaction
16521
+  (0.1ms) begin transaction
16522
+ Processing by AccountsController#show as HTML
16523
+ Parameters: {"id"=>"1"}
16524
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
16525
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
16526
+  (0.1ms) rollback transaction
16527
+  (0.1ms) begin transaction
16528
+  (0.1ms) SAVEPOINT active_record_1
16529
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
16530
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16531
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "9erteWubK9s5D5auxXy6GASSZuwwKSNTpeMTYg8AFgUr"]]
16532
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$rl6efva7ndOBWzvyVGUIJ.X715zy/1hCK5TVHos/Gg3mhQUMenUJ6"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.655537"], ["auth_token", "9erteWubK9s5D5auxXy6GASSZuwwKSNTpeMTYg8AFgUr"], ["auth_token_expires_at", "2015-07-08 04:56:12.658495"], ["created_at", "2015-07-07 04:56:12.658754"], ["updated_at", "2015-07-07 04:56:12.658754"]]
16533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16534
+ Processing by AccountsController#index as HTML
16535
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
16536
+  (0.5ms) rollback transaction
16537
+  (0.1ms) begin transaction
16538
+  (0.1ms) SAVEPOINT active_record_1
16539
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
16540
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16541
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "H4h7iySnJ3U1FNys2DsPqFgBTxYvGp5tqT52HtUyYeUr"]]
16542
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.4@baz.org"], ["password_digest", "$2a$04$ArA0ONgcB3NkEgPoPPR5pOiE7S.yfEw05ORxToh8kyXyt13I48t1e"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.667589"], ["auth_token", "H4h7iySnJ3U1FNys2DsPqFgBTxYvGp5tqT52HtUyYeUr"], ["auth_token_expires_at", "2015-07-08 04:56:12.670407"], ["created_at", "2015-07-07 04:56:12.670658"], ["updated_at", "2015-07-07 04:56:12.670658"]]
16543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16544
+ Processing by AccountsController#show as HTML
16545
+ Parameters: {"id"=>"1"}
16546
+  (0.1ms) SAVEPOINT active_record_1
16547
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.4@baz.org') LIMIT 1
16548
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:12.675883' WHERE "accounts"."id" = ? [["id", 1]]
16549
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16550
+ Filter chain halted as :enforce_activation! rendered or redirected
16551
+ Completed 403 Forbidden in 4ms (ActiveRecord: 0.7ms)
16552
+  (0.7ms) rollback transaction
16553
+  (0.1ms) begin transaction
16554
+  (0.1ms) rollback transaction
16555
+  (0.1ms) begin transaction
16556
+  (0.1ms) SAVEPOINT active_record_1
16557
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
16558
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16559
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "wxD9dpuz2zjPGfeCzgiVqXpMEssimQtFbLrSjEudg1Er"]]
16560
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.5@baz.org"], ["password_digest", "$2a$04$oiSEKvQ96CbO1L5h18K80eyoYexi.keO0q3GZyKEgeCDoSRJuoixO"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.686329"], ["auth_token", "wxD9dpuz2zjPGfeCzgiVqXpMEssimQtFbLrSjEudg1Er"], ["auth_token_expires_at", "2015-07-08 04:56:12.689443"], ["created_at", "2015-07-07 04:56:12.689750"], ["updated_at", "2015-07-07 04:56:12.689750"]]
16561
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16562
+ Processing by AccountsController#show as HTML
16563
+ Parameters: {"id"=>"1"}
16564
+  (0.1ms) SAVEPOINT active_record_1
16565
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.5@baz.org') LIMIT 1
16566
+ SQL (0.6ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:12.694311' WHERE "accounts"."id" = ? [["id", 1]]
16567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16568
+ Filter chain halted as :enforce_activation! rendered or redirected
16569
+ Completed 403 Forbidden in 4ms (ActiveRecord: 0.9ms)
16570
+  (0.8ms) rollback transaction
16571
+  (0.1ms) begin transaction
16572
+  (0.1ms) SAVEPOINT active_record_1
16573
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
16574
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16575
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16576
+  (0.1ms) rollback transaction
16577
+  (0.1ms) begin transaction
16578
+  (0.0ms) SAVEPOINT active_record_1
16579
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16580
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16581
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "TbRVybydeSgfty4yfJdMfMpjBo8UhmHQypn6dkozmxor"]]
16582
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$ayAkE71Xf/sD56rnoap6ieE77ht/3YaJ8C.CHCAcfF1ACn//1vOfa"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.734174"], ["auth_token", "TbRVybydeSgfty4yfJdMfMpjBo8UhmHQypn6dkozmxor"], ["auth_token_expires_at", "2015-07-08 04:56:12.736503"], ["created_at", "2015-07-07 04:56:12.736709"], ["updated_at", "2015-07-07 04:56:12.736709"]]
16583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16584
+  (0.1ms) SAVEPOINT active_record_1
16585
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
16586
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16587
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16588
+  (0.2ms) rollback transaction
16589
+  (0.1ms) begin transaction
16590
+  (0.1ms) SAVEPOINT active_record_1
16591
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
16592
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16593
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16594
+  (0.1ms) rollback transaction
16595
+  (0.1ms) begin transaction
16596
+  (0.1ms) SAVEPOINT active_record_1
16597
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
16598
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16599
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16600
+  (0.1ms) rollback transaction
16601
+  (0.1ms) begin transaction
16602
+  (0.1ms) SAVEPOINT active_record_1
16603
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
16604
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16605
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16606
+  (0.1ms) rollback transaction
16607
+  (0.1ms) begin transaction
16608
+  (0.1ms) SAVEPOINT active_record_1
16609
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
16610
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16611
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "wpF96HpNUqzJtzVeSVAbNX7gDvkkrzuzi3CQqi7jdszr"]]
16612
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$nwXt7QDWWSf1QKy368XqauHB4rEJwtcv.9JTmPwjeC.gTGPBavefK"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.771337"], ["auth_token", "wpF96HpNUqzJtzVeSVAbNX7gDvkkrzuzi3CQqi7jdszr"], ["auth_token_expires_at", "2015-07-08 04:56:12.775538"], ["created_at", "2015-07-07 04:56:12.775818"], ["updated_at", "2015-07-07 04:56:12.775818"]]
16613
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16614
+  (0.0ms) SAVEPOINT active_record_1
16615
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.9@baz.org' AND "accounts"."id" != 1) LIMIT 1
16616
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
16617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16618
+  (0.0ms) SAVEPOINT active_record_1
16619
+ SQL (0.7ms) UPDATE "accounts" SET "password_digest" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["password_digest", nil], ["updated_at", "2015-07-07 04:56:12.781496"], ["id", 1]]
16620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16621
+  (0.8ms) rollback transaction
16622
+  (0.1ms) begin transaction
16623
+  (0.2ms) SAVEPOINT active_record_1
16624
+ Account Exists (0.6ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
16625
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16626
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "pxvsxrpC7JybacJE5X3h8mDbYVTVVrY4s5Sj49SfWUzr"]]
16627
+ SQL (1.0ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$EM6KmH0wKHOyzumyv3dzaeRD4rX4NlhFpAN2k7vHoSCUZkpowPFvS"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.789882"], ["auth_token", "pxvsxrpC7JybacJE5X3h8mDbYVTVVrY4s5Sj49SfWUzr"], ["auth_token_expires_at", "2015-07-08 04:56:12.794742"], ["created_at", "2015-07-07 04:56:12.795122"], ["updated_at", "2015-07-07 04:56:12.795122"]]
16628
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16629
+  (0.1ms) SAVEPOINT active_record_1
16630
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.10@baz.org' AND "accounts"."id" != 1) LIMIT 1
16631
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
16632
+  (0.3ms) RELEASE SAVEPOINT active_record_1
16633
+  (0.1ms) SAVEPOINT active_record_1
16634
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.10@baz.org' AND "accounts"."id" != 1) LIMIT 1
16635
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
16636
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16637
+  (12.5ms) rollback transaction
16638
+  (0.2ms) begin transaction
16639
+  (0.1ms) SAVEPOINT active_record_1
16640
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
16641
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
16642
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "mnPXfCd4y9MkycZwTdxMmu5gqipHpBXF9zPTr72zGyxr"]]
16643
+ SQL (1.1ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$.PG/bG6OboJj1sJCVr7uOexW2Aa.Dd5KJy4HDhDK6tFRVbgzyud3u"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:56:12.832692"], ["auth_token", "mnPXfCd4y9MkycZwTdxMmu5gqipHpBXF9zPTr72zGyxr"], ["auth_token_expires_at", "2015-07-08 04:56:12.835938"], ["created_at", "2015-07-07 04:56:12.836326"], ["updated_at", "2015-07-07 04:56:12.836326"]]
16644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16645
+  (0.0ms) SAVEPOINT active_record_1
16646
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.11@baz.org' AND "accounts"."id" != 1) LIMIT 1
16647
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
16648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16649
+  (0.0ms) SAVEPOINT active_record_1
16650
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.11@baz.org' AND "accounts"."id" != 1) LIMIT 1
16651
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
16652
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16653
+  (0.5ms) rollback transaction
16654
+  (0.1ms) begin transaction
16655
+  (0.1ms) SAVEPOINT active_record_1
16656
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
16657
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
16658
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "sUM8m4tcak42EtvouLefN3ZABrzQVxZDgtCRDvf7i7Ar"]]
16659
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$4mGPm0TaPGhbKFvuAz7pxeuDjt5lA53C.PwrQk6IlqHyT0Pj8guLC"], ["activation_token", "my_token"], ["activation_token_expires_at", "2015-07-07 05:56:12.848336"], ["auth_token", "sUM8m4tcak42EtvouLefN3ZABrzQVxZDgtCRDvf7i7Ar"], ["auth_token_expires_at", "2015-07-08 04:56:12.854842"], ["created_at", "2015-07-07 04:56:12.855108"], ["updated_at", "2015-07-07 04:56:12.855108"]]
16660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16661
+  (0.0ms) SAVEPOINT active_record_1
16662
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.12@baz.org' AND "accounts"."id" != 1) LIMIT 1
16663
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'my_token' AND "accounts"."id" != 1) LIMIT 1
16664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16665
+  (0.6ms) rollback transaction
16666
+  (0.1ms) begin transaction
16667
+  (0.1ms) SAVEPOINT active_record_1
16668
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
16669
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
16670
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16671
+  (0.0ms) SAVEPOINT active_record_1
16672
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
16673
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
16674
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16675
+  (0.1ms) rollback transaction
16676
+  (0.1ms) begin transaction
16677
+  (0.1ms) SAVEPOINT active_record_1
16678
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
16679
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
16680
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16681
+  (0.0ms) SAVEPOINT active_record_1
16682
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
16683
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
16684
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16685
+  (0.1ms) rollback transaction
16686
+  (0.0ms) begin transaction
16687
+  (0.1ms) SAVEPOINT active_record_1
16688
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
16689
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
16690
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16691
+  (0.0ms) SAVEPOINT active_record_1
16692
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
16693
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
16694
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16695
+  (0.1ms) rollback transaction
16696
+  (0.1ms) begin transaction
16697
+  (0.1ms) SAVEPOINT active_record_1
16698
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
16699
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
16700
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16701
+  (0.1ms) SAVEPOINT active_record_1
16702
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
16703
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
16704
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16705
+  (0.1ms) rollback transaction
16706
+  (0.1ms) begin transaction
16707
+  (0.1ms) SAVEPOINT active_record_1
16708
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
16709
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
16710
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "JAPPtPb6z8JbRB8nRqS1ybxqgateRzEWxhKx2R9Tm4Qr"]]
16711
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$pknybsooqlNlhcbJU2J/VOfcyoLxPkL6cm1m7wDnC56kJPGrLcW1i"], ["activation_token", "my_token"], ["activation_token_expires_at", "2015-07-07 05:56:12.908518"], ["auth_token", "JAPPtPb6z8JbRB8nRqS1ybxqgateRzEWxhKx2R9Tm4Qr"], ["auth_token_expires_at", "2015-07-08 04:56:12.914599"], ["created_at", "2015-07-07 04:56:12.914895"], ["updated_at", "2015-07-07 04:56:12.914895"]]
16712
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16713
+  (0.1ms) SAVEPOINT active_record_1
16714
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.17@baz.org' AND "accounts"."id" != 1) LIMIT 1
16715
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'my_token' AND "accounts"."id" != 1) LIMIT 1
16716
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16717
+  (0.2ms) SAVEPOINT active_record_1
16718
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
16719
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
16720
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16721
+  (0.6ms) rollback transaction
16722
+  (0.1ms) begin transaction
16723
+  (0.0ms) SAVEPOINT active_record_1
16724
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
16725
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16726
+  (0.0ms) SAVEPOINT active_record_1
16727
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
16728
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16729
+  (0.1ms) rollback transaction
16730
+  (0.2ms) begin transaction
16731
+  (0.1ms) SAVEPOINT active_record_1
16732
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
16733
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16734
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "RyL1y7yfwsz9k3RYXgK7xjazpDGTxxxqTcEp18ZZ8Jwr"]]
16735
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$m8t.CBtVOCEeiHYT3CX.l.B5iLn.Oj3v1D/.SHIg0MbJTlqQaqCo2"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:12.940701"], ["auth_token_expires_at", "2015-07-08 04:56:12.949608"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:12.940592"], ["auth_token", "RyL1y7yfwsz9k3RYXgK7xjazpDGTxxxqTcEp18ZZ8Jwr"], ["created_at", "2015-07-07 04:56:12.950022"], ["updated_at", "2015-07-07 04:56:12.950022"]]
16736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16737
+  (0.6ms) rollback transaction
16738
+  (0.1ms) begin transaction
16739
+  (0.1ms) SAVEPOINT active_record_1
16740
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
16741
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16742
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$LKepZjoH0gOPha8oYFcRzOrgOpiulROB49xWhP0akDwmtVnS0mgIa"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:12.954934"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:12.954792"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:12.954909"], ["created_at", "2015-07-07 04:56:12.960767"], ["updated_at", "2015-07-07 04:56:12.960767"]]
16743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16744
+  (0.5ms) rollback transaction
16745
+  (0.1ms) begin transaction
16746
+  (0.1ms) SAVEPOINT active_record_1
16747
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
16748
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16749
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$C73ydEgp6szeOlMq8gNKoOFd0BWZS8j5357crnMzZD4RIYG4bDqBy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:12.964137"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:12.964019"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:12.964116"], ["created_at", "2015-07-07 04:56:12.969644"], ["updated_at", "2015-07-07 04:56:12.969644"]]
16750
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16751
+  (0.5ms) rollback transaction
16752
+  (0.1ms) begin transaction
16753
+  (0.1ms) SAVEPOINT active_record_1
16754
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.23@baz.org' LIMIT 1
16755
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16756
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.23@baz.org"], ["password_digest", "$2a$04$ig3crETPDb9/fYxUYF8IL.ZZUUP1FuX3phvoY2owbvTFJUP1gxUHq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:12.972716"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:12.972596"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:12.972694"], ["created_at", "2015-07-07 04:56:12.978194"], ["updated_at", "2015-07-07 04:56:12.978194"]]
16757
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16758
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "P4aLyaD875mvV5SAEeamthL3dmAhgBBpqnxALPxpQNgr"]]
16759
+  (0.4ms) rollback transaction
16760
+  (0.1ms) begin transaction
16761
+  (0.1ms) SAVEPOINT active_record_1
16762
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.24@baz.org' LIMIT 1
16763
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16764
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.24@baz.org"], ["password_digest", "$2a$04$wprKlZKiqU17qQvU0tyYvedShNR7ozHwsXxdcnxCsFphGPiiE1w6y"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:12.981993"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:12.981866"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:12.981972"], ["created_at", "2015-07-07 04:56:12.986379"], ["updated_at", "2015-07-07 04:56:12.986379"]]
16765
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16766
+  (0.5ms) rollback transaction
16767
+  (0.1ms) begin transaction
16768
+  (0.1ms) SAVEPOINT active_record_1
16769
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.25@baz.org' LIMIT 1
16770
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16771
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.25@baz.org"], ["password_digest", "$2a$04$PlXsCTCeI7l0ifFt4TnpSOOzhiO3H1xkOmBxgPo6HZZ9kz9XBkiyq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:12.989362"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:12.989245"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:12.989341"], ["created_at", "2015-07-07 04:56:12.994991"], ["updated_at", "2015-07-07 04:56:12.994991"]]
16772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16773
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "yyWewYxgAxHAvs2wzNTQjJqJjr7vLexzqQUDKQhytAUr"]]
16774
+  (0.7ms) rollback transaction
16775
+  (0.1ms) begin transaction
16776
+  (0.1ms) SAVEPOINT active_record_1
16777
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.26@baz.org' LIMIT 1
16778
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16779
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.26@baz.org"], ["password_digest", "$2a$04$t41OdfIhPQ/e/vEt59/aIuTeEoL6BS3lxihhPhdtKE8uWNApkblMy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.005370"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.004948"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.005321"], ["created_at", "2015-07-07 04:56:13.011195"], ["updated_at", "2015-07-07 04:56:13.011195"]]
16780
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16781
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BN6cWoeJE7usCbs6pGhSPHHKUgUj8s2aEA25bNtLJagr"]]
16782
+  (0.6ms) rollback transaction
16783
+  (0.1ms) begin transaction
16784
+  (0.1ms) SAVEPOINT active_record_1
16785
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.27@baz.org' LIMIT 1
16786
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16787
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.27@baz.org"], ["password_digest", "$2a$04$dXm8XgZ7uD/YPbazw32exeL6apHMjlFAFp/yQVnxZwICkQdaYWInu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.030755"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.030607"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.030729"], ["created_at", "2015-07-07 04:56:13.037133"], ["updated_at", "2015-07-07 04:56:13.037133"]]
16788
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16789
+  (0.7ms) rollback transaction
16790
+  (0.2ms) begin transaction
16791
+  (0.1ms) SAVEPOINT active_record_1
16792
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.28@baz.org' LIMIT 1
16793
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16794
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.28@baz.org"], ["password_digest", "$2a$04$OkbxppRQeJcF5xmQ2OvG5uceGiwdGBDMeOzmialj31yTjHvDEkL9G"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.043779"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.043582"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.043749"], ["created_at", "2015-07-07 04:56:13.050197"], ["updated_at", "2015-07-07 04:56:13.050197"]]
16795
+  (0.2ms) RELEASE SAVEPOINT active_record_1
16796
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Xx2q7s5dx6QwfppPUQQuyT7zkEKSSFdZkySEiZzuwc4r"]]
16797
+  (0.1ms) SAVEPOINT active_record_1
16798
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "Xx2q7s5dx6QwfppPUQQuyT7zkEKSSFdZkySEiZzuwc4r"], ["auth_token_expires_at", "2015-07-08 04:56:13.053865"], ["updated_at", "2015-07-07 04:56:13.054470"], ["id", 1]]
16799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16800
+  (0.7ms) rollback transaction
16801
+  (0.1ms) begin transaction
16802
+  (0.0ms) SAVEPOINT active_record_1
16803
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.29@baz.org' LIMIT 1
16804
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16805
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.29@baz.org"], ["password_digest", "$2a$04$vp7PKMZ3uziRZd8.xydWj.V27QcbUzFOfp97CGrzRMGwCo.mUtjRe"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.058089"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.057955"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.058067"], ["created_at", "2015-07-07 04:56:13.062490"], ["updated_at", "2015-07-07 04:56:13.062490"]]
16806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16807
+  (0.6ms) rollback transaction
16808
+  (0.1ms) begin transaction
16809
+  (0.1ms) SAVEPOINT active_record_1
16810
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.30@baz.org' LIMIT 1
16811
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16812
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.30@baz.org"], ["password_digest", "$2a$04$bc3cuA/bDYuB5.2bGIBMGOIJuKkjkCIBva5TsLcNOyFJdFIQD0NLK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.066147"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.065957"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.066110"], ["created_at", "2015-07-07 04:56:13.075580"], ["updated_at", "2015-07-07 04:56:13.075580"]]
16813
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16814
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "pohwxmmnxqxTjNheoyHySFyGBBTnoH7zBmJpA3oEqJQr"]]
16815
+  (0.1ms) SAVEPOINT active_record_1
16816
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "pohwxmmnxqxTjNheoyHySFyGBBTnoH7zBmJpA3oEqJQr"], ["auth_token_expires_at", "2015-07-08 04:56:13.079059"], ["updated_at", "2015-07-07 04:56:13.079629"], ["id", 1]]
16817
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16818
+  (0.9ms) rollback transaction
16819
+  (0.1ms) begin transaction
16820
+  (0.1ms) SAVEPOINT active_record_1
16821
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.31@baz.org' LIMIT 1
16822
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16823
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.31@baz.org"], ["password_digest", "$2a$04$hY1zvlg2Lr85uQ.aQXQ6meuy6HK52g4LD8pTBMFSZz5HU/2SN.AQu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.083448"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.083298"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.083427"], ["created_at", "2015-07-07 04:56:13.089906"], ["updated_at", "2015-07-07 04:56:13.089906"]]
16824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16825
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "HvsA8Po78LLahLKyrMuUNLNYXmUAv75ZbTE8r5qdeGUr"]]
16826
+  (0.4ms) rollback transaction
16827
+  (0.1ms) begin transaction
16828
+  (0.1ms) SAVEPOINT active_record_1
16829
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.32@baz.org' LIMIT 1
16830
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16831
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.32@baz.org"], ["password_digest", "$2a$04$dAk3sdHQPVJ8zcKrgCRex.PBERvSC68oTMeh6gXoYl4.Jb9YHBKKu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.095214"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-07 04:57:13.095157"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.095198"], ["created_at", "2015-07-07 04:56:13.102085"], ["updated_at", "2015-07-07 04:56:13.102085"]]
16832
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16833
+  (0.5ms) rollback transaction
16834
+  (0.1ms) begin transaction
16835
+  (0.1ms) SAVEPOINT active_record_1
16836
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.33@baz.org' LIMIT 1
16837
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16838
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.33@baz.org"], ["password_digest", "$2a$04$bNgg8B/unEdCHIj4MK51UuhGI8S0qwBEEimix2/qzZahFpT6JmVwa"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.105868"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-07 04:55:13.105813"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.105852"], ["created_at", "2015-07-07 04:56:13.111473"], ["updated_at", "2015-07-07 04:56:13.111473"]]
16839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16840
+  (0.5ms) rollback transaction
16841
+  (0.0ms) begin transaction
16842
+  (0.1ms) SAVEPOINT active_record_1
16843
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.34@baz.org' LIMIT 1
16844
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16845
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.34@baz.org"], ["password_digest", "$2a$04$uhvtXxSbaNWYHbFnHUjqFOAiotZyuZws3LZCy1QugCdnsrkryDnvG"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.114381"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.114269"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.114360"], ["created_at", "2015-07-07 04:56:13.119371"], ["updated_at", "2015-07-07 04:56:13.119371"]]
16846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16847
+  (0.5ms) rollback transaction
16848
+  (0.1ms) begin transaction
16849
+  (0.1ms) SAVEPOINT active_record_1
16850
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.35@baz.org' LIMIT 1
16851
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16852
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.35@baz.org"], ["password_digest", "$2a$04$ifxnVkKKB06qcYroNQReb.lJcPGKe4gC015Fo64cx5g576BEiheoO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.123322"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.122993"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.123279"], ["created_at", "2015-07-07 04:56:13.129221"], ["updated_at", "2015-07-07 04:56:13.129221"]]
16853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16854
+  (0.6ms) rollback transaction
16855
+  (0.1ms) begin transaction
16856
+  (0.0ms) SAVEPOINT active_record_1
16857
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.36@baz.org' LIMIT 1
16858
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16859
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.36@baz.org"], ["password_digest", "$2a$04$1QoZ5pYb.cJz6/lFIU4Myu4Ob8l.f/wshqzFZOohU4YgsiwqQe0iO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.134739"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.134597"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.134714"], ["created_at", "2015-07-07 04:56:13.140731"], ["updated_at", "2015-07-07 04:56:13.140731"]]
16860
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16861
+  (0.7ms) rollback transaction
16862
+  (0.1ms) begin transaction
16863
+  (0.1ms) SAVEPOINT active_record_1
16864
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.37@baz.org' LIMIT 1
16865
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16866
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.37@baz.org"], ["password_digest", "$2a$04$yCKltEobHL/G.e//1EwXmOZsImc/ZtBHjccGnAW6eIFqV7DZdemqG"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.146279"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.146092"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 03:56:13.146243"], ["created_at", "2015-07-07 04:56:13.152300"], ["updated_at", "2015-07-07 04:56:13.152300"]]
16867
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16868
+  (0.5ms) rollback transaction
16869
+  (0.1ms) begin transaction
16870
+  (0.1ms) SAVEPOINT active_record_1
16871
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.38@baz.org' LIMIT 1
16872
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16873
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.38@baz.org"], ["password_digest", "$2a$04$n9ltQPFuPOINWFt91XxKnOUgtcWYZ79Ax6GqRjfzJN3/fI6j2nGzy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.156077"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.155948"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.156055"], ["created_at", "2015-07-07 04:56:13.161479"], ["updated_at", "2015-07-07 04:56:13.161479"]]
16874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16875
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "fBCaUgniqjYjaFpkWNasnVnJzTZx1i1Sgbe1xmj4XrQr"]]
16876
+  (0.6ms) rollback transaction
16877
+  (0.1ms) begin transaction
16878
+  (0.1ms) SAVEPOINT active_record_1
16879
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.39@baz.org' LIMIT 1
16880
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16881
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.39@baz.org"], ["password_digest", "$2a$04$8Jys4Ax2zF8sm9.oYJ0edOVOLOrQrhgNkCchMV3Cq5Cy6LtueVqtO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.165593"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.165403"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.165559"], ["created_at", "2015-07-07 04:56:13.173476"], ["updated_at", "2015-07-07 04:56:13.173476"]]
16882
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16883
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "7og99S4Eg5dJxUqpiDbCPPh9UFauTzTCKzwE9MYQAB4r"]]
16884
+  (0.7ms) rollback transaction
16885
+  (0.1ms) begin transaction
16886
+  (0.1ms) SAVEPOINT active_record_1
16887
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.40@baz.org' LIMIT 1
16888
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16889
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.40@baz.org"], ["password_digest", "$2a$04$xBLQfoi00JpQwFUFpOHVzuHx4AJA4NLQymp0vfFt4Zkw.Dz/i.2cq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.180425"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.180135"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.180374"], ["created_at", "2015-07-07 04:56:13.186150"], ["updated_at", "2015-07-07 04:56:13.186150"]]
16890
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16891
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "n4iJ6svia26qxfQtEF4phrLo7pnR31HLpwVpWh1ZQhUr"]]
16892
+  (0.5ms) rollback transaction
16893
+  (0.1ms) begin transaction
16894
+  (0.1ms) SAVEPOINT active_record_1
16895
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.41@baz.org' LIMIT 1
16896
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16897
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.41@baz.org"], ["password_digest", "$2a$04$RAK81Sy.kWoMGUl4NuneNOTZybPnwox6lusLk9xABthQ5Wu/Yk/86"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.194683"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.194542"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.194660"], ["created_at", "2015-07-07 04:56:13.202320"], ["updated_at", "2015-07-07 04:56:13.202320"]]
16898
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16899
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "U3YkTys2PXfj7Num1vsJfmNsuRgE3cF5pY9jSrbgJzwr"]]
16900
+  (0.5ms) rollback transaction
16901
+  (0.1ms) begin transaction
16902
+  (0.1ms) SAVEPOINT active_record_1
16903
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.42@baz.org' LIMIT 1
16904
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16905
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.42@baz.org"], ["password_digest", "$2a$04$DhPAenIiDiHONpspTPYV2.5xKs16PvdySvutuXqvtza4rAyS4vnpi"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.206937"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.206814"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.206916"], ["created_at", "2015-07-07 04:56:13.211937"], ["updated_at", "2015-07-07 04:56:13.211937"]]
16906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16907
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "C4tpdpF7EGLu3JksTTsUpk3h3quzbtzzuM4s2kehKZgr"]]
16908
+  (0.5ms) rollback transaction
16909
+  (0.0ms) begin transaction
16910
+  (0.1ms) SAVEPOINT active_record_1
16911
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.43@baz.org' LIMIT 1
16912
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16913
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.43@baz.org"], ["password_digest", "$2a$04$jH6Y0p2gignJrsLr0SbDbOumdTDr/7aI36c3Z2BAoTlJA2SIxM0eO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.216173"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.216027"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.216147"], ["created_at", "2015-07-07 04:56:13.221050"], ["updated_at", "2015-07-07 04:56:13.221050"]]
16914
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16915
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "qyykpGSssQzpmUzPpNSHnZqRwsnYh5xrakAaSLJqbQor"]]
16916
+  (0.5ms) rollback transaction
16917
+  (0.2ms) begin transaction
16918
+  (0.1ms) SAVEPOINT active_record_1
16919
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.44@baz.org' LIMIT 1
16920
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16921
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.44@baz.org"], ["password_digest", "$2a$04$dbDyV708EjMV8G4YSQc/fOSvk78Po.nRRJ0tGPGm/HbCn9yZka6t."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.226617"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.226485"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.226594"], ["created_at", "2015-07-07 04:56:13.230988"], ["updated_at", "2015-07-07 04:56:13.230988"]]
16922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16923
+ SQL (0.3ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16924
+  (0.7ms) rollback transaction
16925
+  (0.1ms) begin transaction
16926
+  (0.0ms) SAVEPOINT active_record_1
16927
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.45@baz.org' LIMIT 1
16928
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16929
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.45@baz.org"], ["password_digest", "$2a$04$bfFElnOUYKQZfclEX2alQ.y7HXTypiChPZadT/41alBRV8BLEHN0K"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.235265"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.235130"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.235241"], ["created_at", "2015-07-07 04:56:13.240106"], ["updated_at", "2015-07-07 04:56:13.240106"]]
16930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16931
+ SQL (0.3ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16932
+  (0.7ms) rollback transaction
16933
+  (0.1ms) begin transaction
16934
+  (0.1ms) SAVEPOINT active_record_1
16935
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.46@baz.org' LIMIT 1
16936
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16937
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.46@baz.org"], ["password_digest", "$2a$04$w8h0g/Zamw3ci3SwLXsWAOM8UJXWTdId0zZQp2sNSsDtjfgknX5.m"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.244354"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.244186"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.244333"], ["created_at", "2015-07-07 04:56:13.248669"], ["updated_at", "2015-07-07 04:56:13.248669"]]
16938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16939
+ SQL (0.4ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16940
+  (0.8ms) rollback transaction
16941
+  (0.1ms) begin transaction
16942
+  (0.1ms) SAVEPOINT active_record_1
16943
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.47@baz.org' LIMIT 1
16944
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16945
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.47@baz.org"], ["password_digest", "$2a$04$/QjjH934gNx6D.RqZMdwvOb98Aa7zWfxB/761jXohadX9BCS7zvNy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.254001"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.253851"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.253975"], ["created_at", "2015-07-07 04:56:13.260393"], ["updated_at", "2015-07-07 04:56:13.260393"]]
16946
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16947
+  (0.5ms) rollback transaction
16948
+  (0.1ms) begin transaction
16949
+  (0.0ms) SAVEPOINT active_record_1
16950
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.48@baz.org' LIMIT 1
16951
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16952
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.48@baz.org"], ["password_digest", "$2a$04$kTRGhRfosGypexHNCDbV9OWFIVoBn6xGqU.yH.zbxlTtuguh8HBP6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.263782"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.263671"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.263762"], ["created_at", "2015-07-07 04:56:13.268317"], ["updated_at", "2015-07-07 04:56:13.268317"]]
16953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16954
+  (0.5ms) rollback transaction
16955
+  (0.0ms) begin transaction
16956
+  (0.1ms) SAVEPOINT active_record_1
16957
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.49@baz.org' LIMIT 1
16958
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16959
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.49@baz.org"], ["password_digest", "$2a$04$/pIkrQ1bs2qfmqOTXc2enOsqFsXAqY/HvXfcIHZrf7JzRBlR1nX1q"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.271314"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.271199"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.271296"], ["created_at", "2015-07-07 04:56:13.276707"], ["updated_at", "2015-07-07 04:56:13.276707"]]
16960
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16961
+  (0.4ms) rollback transaction
16962
+  (0.1ms) begin transaction
16963
+  (0.1ms) SAVEPOINT active_record_1
16964
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.50@baz.org' LIMIT 1
16965
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16966
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.50@baz.org"], ["password_digest", "$2a$04$9xOgOn/Dnkqj8qtDcIJvxOyR/vzL/TmiLqOM74jArn5LH1yRECPsS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.279529"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.279588"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.279665"], ["created_at", "2015-07-07 04:56:13.285214"], ["updated_at", "2015-07-07 04:56:13.285214"]]
16967
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16968
+  (0.8ms) rollback transaction
16969
+  (0.2ms) begin transaction
16970
+  (0.1ms) SAVEPOINT active_record_1
16971
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.51@baz.org' LIMIT 1
16972
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16973
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.51@baz.org"], ["password_digest", "$2a$04$DjVnQ04SwB0e4BECy/xPxe1nr1yzBc1rbX910p1WnFnMa2YClhLWi"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.291674"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.291484"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.291639"], ["created_at", "2015-07-07 04:56:13.298992"], ["updated_at", "2015-07-07 04:56:13.298992"]]
16974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16975
+  (0.5ms) rollback transaction
16976
+  (0.1ms) begin transaction
16977
+  (0.1ms) SAVEPOINT active_record_1
16978
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.52@baz.org' LIMIT 1
16979
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16980
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.52@baz.org"], ["password_digest", "$2a$04$H2zKRwAuwLRM4O46kn4YRuxaGG7tj2oJlhs6aWrZBklPN2MfGdg/C"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.304152"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.304004"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.304121"], ["created_at", "2015-07-07 04:56:13.309254"], ["updated_at", "2015-07-07 04:56:13.309254"]]
16981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16982
+ SQL (0.5ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:13.311159', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16983
+  (1.0ms) rollback transaction
16984
+  (0.1ms) begin transaction
16985
+  (0.0ms) SAVEPOINT active_record_1
16986
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.53@baz.org' LIMIT 1
16987
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16988
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.53@baz.org"], ["password_digest", "$2a$04$4CuzdxTmOnUMjZNOw0oZ9OktTUG/7Yu/7mKKM1JqddUlPP1LARf9q"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.315341"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.315205"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.315317"], ["created_at", "2015-07-07 04:56:13.319785"], ["updated_at", "2015-07-07 04:56:13.319785"]]
16989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16990
+ SQL (0.9ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:13.322336', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16991
+  (0.9ms) rollback transaction
16992
+  (0.1ms) begin transaction
16993
+  (0.1ms) SAVEPOINT active_record_1
16994
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.54@baz.org' LIMIT 1
16995
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
16996
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.54@baz.org"], ["password_digest", "$2a$04$wnrmeB8zDgrMfyyJbxJgneasN6Q0YWZ/URRPNNHZ4y6WKpFo/OORG"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.326771"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.326629"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.326745"], ["created_at", "2015-07-07 04:56:13.331772"], ["updated_at", "2015-07-07 04:56:13.331772"]]
16997
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16998
+ SQL (0.3ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:13.333371', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
16999
+  (0.7ms) rollback transaction
17000
+  (0.1ms) begin transaction
17001
+  (0.1ms) SAVEPOINT active_record_1
17002
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.55@baz.org' LIMIT 1
17003
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17004
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.55@baz.org"], ["password_digest", "$2a$04$r89SsAMMsxaZ1/xCl4vhW.WHFTlZwumh2QdsI8iFfa.bwtUEuMzC."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.336357"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.336167"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.336336"], ["created_at", "2015-07-07 04:56:13.341739"], ["updated_at", "2015-07-07 04:56:13.341739"]]
17005
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17006
+ SQL (0.3ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:13.343181', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17007
+  (1.1ms) rollback transaction
17008
+  (0.1ms) begin transaction
17009
+  (0.1ms) SAVEPOINT active_record_1
17010
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.56@baz.org' LIMIT 1
17011
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17012
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.56@baz.org"], ["password_digest", "$2a$04$qNVsbXLegH5FX.wbeSnGvubTo/9QYafwuqhvmuSc7wpPvYJnKC9KC"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.347003"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.346764"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.346968"], ["created_at", "2015-07-07 04:56:13.352943"], ["updated_at", "2015-07-07 04:56:13.352943"]]
17013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17014
+ SQL (0.3ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:13.354898', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17015
+  (0.8ms) rollback transaction
17016
+  (0.1ms) begin transaction
17017
+  (0.1ms) SAVEPOINT active_record_1
17018
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.57@baz.org' LIMIT 1
17019
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17020
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.57@baz.org"], ["password_digest", "$2a$04$3.exN/NGPZWLprfn4e.N5efFjOdO4oAbxCHGRkND8QGXLT42DipWW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.358214"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.358051"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.358190"], ["created_at", "2015-07-07 04:56:13.365248"], ["updated_at", "2015-07-07 04:56:13.365248"]]
17021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17022
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "sh7Hy7XxWLkF4N8bjcKE1Umsw7x33fhVxHn5epuceBzr"]]
17023
+  (0.7ms) rollback transaction
17024
+  (0.1ms) begin transaction
17025
+  (0.1ms) SAVEPOINT active_record_1
17026
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.58@baz.org' LIMIT 1
17027
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17028
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.58@baz.org"], ["password_digest", "$2a$04$2dPSUyMz9qExsZhfGwN8zOIQRp3tVLR7tBFFa8Wt27u93s0BN6VJW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.371663"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.371474"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.371628"], ["created_at", "2015-07-07 04:56:13.379190"], ["updated_at", "2015-07-07 04:56:13.379190"]]
17029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17030
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "tw3jyjSnNXmzAHUUv9RzYsLUpqMqsLLyMUyyeBS5YWMr"]]
17031
+  (0.6ms) rollback transaction
17032
+  (0.1ms) begin transaction
17033
+  (0.1ms) SAVEPOINT active_record_1
17034
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.59@baz.org' LIMIT 1
17035
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17036
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.59@baz.org"], ["password_digest", "$2a$04$mvtjGxEgAAO0Xi6nR4DPdOjvh.4QLGb5s7ltwaLDA1/ZNMPQzBu3K"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.384609"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.384451"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.384579"], ["created_at", "2015-07-07 04:56:13.390485"], ["updated_at", "2015-07-07 04:56:13.390485"]]
17037
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17038
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "Wznqf4AG4yFBwxyqkKJ7sxD8A2ypNphH8pgormFZmszr"]]
17039
+  (0.6ms) rollback transaction
17040
+  (0.1ms) begin transaction
17041
+  (0.1ms) SAVEPOINT active_record_1
17042
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.60@baz.org' LIMIT 1
17043
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17044
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.60@baz.org"], ["password_digest", "$2a$04$YC6h/3tDXkUWBKPDH1/aluMJ4R8j16IISG8SQAPzUcWaIecnJn6wS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.396455"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.396271"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.396420"], ["created_at", "2015-07-07 04:56:13.404987"], ["updated_at", "2015-07-07 04:56:13.404987"]]
17045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17046
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "3xpm2ynYoQdCe1oVYJ3CzZo4y7FgbvTzGMf55tappWgr"]]
17047
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "1fnqFaXAJ9g4sb6XxBXFjh5RMVxAzqC7PVSx1sAdz7or"]]
17048
+  (0.6ms) rollback transaction
17049
+  (0.1ms) begin transaction
17050
+  (0.1ms) SAVEPOINT active_record_1
17051
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.61@baz.org' LIMIT 1
17052
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17053
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.61@baz.org"], ["password_digest", "$2a$04$GGiRLN5peAld1zeAKeSlXurMlgNKryaroDZNyq4McWV50.H7i1COi"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.411689"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.411534"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.411663"], ["created_at", "2015-07-07 04:56:13.416799"], ["updated_at", "2015-07-07 04:56:13.416799"]]
17054
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17055
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "sEco9JHywWeFjnN9kcRFqAZDxdysoGWzyzeJbWgdrior"]]
17056
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "yJ4V4gZMeSyTCHvKzNxoE7L8wz6FCxRxcsPfQxRpePgr"]]
17057
+  (0.7ms) rollback transaction
17058
+  (0.1ms) begin transaction
17059
+  (0.1ms) SAVEPOINT active_record_1
17060
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.62@baz.org' LIMIT 1
17061
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17062
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.62@baz.org"], ["password_digest", "$2a$04$s1wUn6jp/hiOVN01XJKHNO.bhV09cahWN2dmZZP.W8EDMyovBmeqS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.423368"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:56:13.423087"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.423302"], ["created_at", "2015-07-07 04:56:13.432474"], ["updated_at", "2015-07-07 04:56:13.432474"]]
17063
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17064
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "CEC7bAJCAzgiqHjEjp8fgWsZYzxy9pnz4pGZrZPQzvgr"]]
17065
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "qVdqPosKtJVCytcMPpmmuvBbZqqKkEui7nBjgYETCpkr"]]
17066
+  (0.7ms) rollback transaction
17067
+  (0.1ms) begin transaction
17068
+  (0.1ms) SAVEPOINT active_record_1
17069
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17070
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17071
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$5.EZDdsMBldawaJ8gfYpluypypVpgFxArFeTntw4TcYE8CL6OCnBW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.440806"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.440615"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.440769"], ["created_at", "2015-07-07 04:56:13.448661"], ["updated_at", "2015-07-07 04:56:13.448661"]]
17072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17073
+  (0.8ms) rollback transaction
17074
+  (0.1ms) begin transaction
17075
+  (0.1ms) SAVEPOINT active_record_1
17076
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17077
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17078
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$kwHZsf.H9ShqV.WjUAyoAeesgz4B4MVvfWkD1PzKO0n8Kz1vU8Ndu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.453341"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.453189"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.453317"], ["created_at", "2015-07-07 04:56:13.459240"], ["updated_at", "2015-07-07 04:56:13.459240"]]
17079
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17080
+  (0.5ms) rollback transaction
17081
+  (0.1ms) begin transaction
17082
+  (0.1ms) SAVEPOINT active_record_1
17083
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17084
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17085
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$KZJ/VxxUHnk91CUZrMhZsOIUnW9LxfbfRj/GwkniGFJAz.t.uquvC"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.464103"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.463958"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.464076"], ["created_at", "2015-07-07 04:56:13.468562"], ["updated_at", "2015-07-07 04:56:13.468562"]]
17086
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17087
+  (0.1ms) SAVEPOINT active_record_1
17088
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17089
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:13.475569' WHERE "accounts"."id" = ? [["id", 1]]
17090
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17091
+  (0.8ms) rollback transaction
17092
+  (0.1ms) begin transaction
17093
+  (0.1ms) SAVEPOINT active_record_1
17094
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17095
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17096
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$czqMhMqoOHF3oj4N6U/es.mJLduHbT9Ke6Jv1tINmd6Yr4I/Nk5N."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.478947"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.478814"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.478922"], ["created_at", "2015-07-07 04:56:13.483628"], ["updated_at", "2015-07-07 04:56:13.483628"]]
17097
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17098
+  (0.0ms) SAVEPOINT active_record_1
17099
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17100
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:13.485896' WHERE "accounts"."id" = ? [["id", 1]]
17101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17102
+  (0.7ms) rollback transaction
17103
+  (0.1ms) begin transaction
17104
+  (0.1ms) SAVEPOINT active_record_1
17105
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17106
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17107
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Yz1TJkBPZrjYkG6F348ki.Vmnx2hYhSYRdWldhmTAY.oQw/mFPcce"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.488890"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-06-30 04:56:13.488700"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.488797"], ["created_at", "2015-07-07 04:56:13.493685"], ["updated_at", "2015-07-07 04:56:13.493685"]]
17108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17109
+  (0.0ms) SAVEPOINT active_record_1
17110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17111
+  (0.5ms) rollback transaction
17112
+  (0.1ms) begin transaction
17113
+  (0.1ms) SAVEPOINT active_record_1
17114
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17115
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17116
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$iPcc/736Jj8Y5mz3PcbRZeD9nAkdaCZITJuiw7SkftC2pVqlm8hFC"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.498030"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-06-30 04:56:13.497858"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.498001"], ["created_at", "2015-07-07 04:56:13.505949"], ["updated_at", "2015-07-07 04:56:13.505949"]]
17117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17118
+  (0.0ms) SAVEPOINT active_record_1
17119
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17120
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "CvztjcDyQbhYrodWbJxwNc8cHHqRtqj6buqdnKWY8ekr"]]
17121
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "CvztjcDyQbhYrodWbJxwNc8cHHqRtqj6buqdnKWY8ekr"], ["auth_token_expires_at", "2015-07-08 04:56:13.510521"], ["updated_at", "2015-07-07 04:56:13.510872"], ["id", 1]]
17122
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17123
+  (0.8ms) rollback transaction
17124
+  (0.1ms) begin transaction
17125
+  (0.1ms) SAVEPOINT active_record_1
17126
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17127
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17128
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$zu7pu9Sn3HLFUBkkxeo98eirZ9tHq4zU.rIh8S/LlDV8VvKM.i9eO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.514267"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.514130"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.514245"], ["created_at", "2015-07-07 04:56:13.518646"], ["updated_at", "2015-07-07 04:56:13.518646"]]
17129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17130
+  (0.0ms) SAVEPOINT active_record_1
17131
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17132
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:13.521777' WHERE "accounts"."id" = ? [["id", 1]]
17133
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17134
+  (1.0ms) rollback transaction
17135
+  (0.1ms) begin transaction
17136
+  (0.0ms) SAVEPOINT active_record_1
17137
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17138
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17139
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$7eVoBjoq3c4kDiyzF33JWOfWKjPG2aj9Gd.8pECwruiA0xQGtka4O"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.525420"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.525300"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.525398"], ["created_at", "2015-07-07 04:56:13.530678"], ["updated_at", "2015-07-07 04:56:13.530678"]]
17140
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17141
+  (0.1ms) SAVEPOINT active_record_1
17142
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17143
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:13.535020' WHERE "accounts"."id" = ? [["id", 1]]
17144
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17145
+  (0.9ms) rollback transaction
17146
+  (0.1ms) begin transaction
17147
+  (0.1ms) SAVEPOINT active_record_1
17148
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17149
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17150
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$YaDb.1DnxX1xwfj8G0EtpeWdcUwjAH.znk2.PadaIM7qHUsC/Iu4y"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.539254"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.539092"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.539224"], ["created_at", "2015-07-07 04:56:13.546132"], ["updated_at", "2015-07-07 04:56:13.546132"]]
17151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17152
+  (0.1ms) SAVEPOINT active_record_1
17153
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17154
+ SQL (0.6ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:56:13.550142' WHERE "accounts"."id" = ? [["id", 1]]
17155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17156
+  (0.8ms) rollback transaction
17157
+  (0.1ms) begin transaction
17158
+  (0.1ms) SAVEPOINT active_record_1
17159
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17160
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17161
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$gyJkoybfvGeCnt2OTb2.meDNfCiM59DKsAT8w.FD/FwEmNjuLAnXm"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.554041"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.553884"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.554013"], ["created_at", "2015-07-07 04:56:13.561769"], ["updated_at", "2015-07-07 04:56:13.561769"]]
17162
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17163
+  (0.1ms) SAVEPOINT active_record_1
17164
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17166
+  (0.7ms) rollback transaction
17167
+  (0.1ms) begin transaction
17168
+  (0.1ms) SAVEPOINT active_record_1
17169
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17170
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17171
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$lxtBGBmrYE.2ohbud5IVX.ZXu4nlgNgQTzDkmiYjmYd4bNpb7WUsW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.569093"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.568937"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.569062"], ["created_at", "2015-07-07 04:56:13.575864"], ["updated_at", "2015-07-07 04:56:13.575864"]]
17172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17173
+  (0.1ms) SAVEPOINT active_record_1
17174
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17175
+ SQL (0.4ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:56:13.578880', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17177
+  (0.7ms) rollback transaction
17178
+  (0.1ms) begin transaction
17179
+  (0.1ms) SAVEPOINT active_record_1
17180
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17181
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17182
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$P0.iWZgVMtAsXInxGvEa/u/KAZRZ42cu3NvzKI0AImsODsxt7QnyK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-06 04:56:13.581942"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.581766"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.581909"], ["created_at", "2015-07-07 04:56:13.587216"], ["updated_at", "2015-07-07 04:56:13.587216"]]
17183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17184
+  (0.0ms) SAVEPOINT active_record_1
17185
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17187
+  (0.5ms) rollback transaction
17188
+  (0.1ms) begin transaction
17189
+  (0.1ms) SAVEPOINT active_record_1
17190
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17191
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17192
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$hoq62/iJ7ASQucgcK14zSe6jvv3wlH218561hvzJovndZkcTtl.BW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.592118"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.591997"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.592090"], ["created_at", "2015-07-07 04:56:13.596561"], ["updated_at", "2015-07-07 04:56:13.596561"]]
17193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17194
+  (0.0ms) SAVEPOINT active_record_1
17195
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17196
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17197
+  (0.7ms) rollback transaction
17198
+  (0.1ms) begin transaction
17199
+  (0.1ms) SAVEPOINT active_record_1
17200
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17201
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17202
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$13R68QyylfuQvJpH4S7Pe.DxqbA5arXRUBiw/Ilk0BmXXgbmwpXWS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.601822"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.601697"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.601799"], ["created_at", "2015-07-07 04:56:13.608200"], ["updated_at", "2015-07-07 04:56:13.608200"]]
17203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17204
+  (0.0ms) SAVEPOINT active_record_1
17205
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'notmyemail@gmail.com') LIMIT 1
17206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17207
+  (0.6ms) rollback transaction
17208
+  (0.1ms) begin transaction
17209
+  (0.1ms) SAVEPOINT active_record_1
17210
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17211
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17212
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$erHudRI/z9HHZDGLigrJCeRMqJBjenxOHmRwSTmK/u/WWFhtrBMae"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.612910"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.612714"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.612872"], ["created_at", "2015-07-07 04:56:13.620025"], ["updated_at", "2015-07-07 04:56:13.620025"]]
17213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17214
+  (0.1ms) SAVEPOINT active_record_1
17215
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17217
+  (0.4ms) rollback transaction
17218
+  (0.1ms) begin transaction
17219
+  (0.1ms) SAVEPOINT active_record_1
17220
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17221
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17222
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$9xtKAZUoUAJn.7ps5KJKIeoz6v0zp2epfX2LlEGYSJ2Eq9LxSNZHu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.625136"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.624898"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.625067"], ["created_at", "2015-07-07 04:56:13.629809"], ["updated_at", "2015-07-07 04:56:13.629809"]]
17223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17224
+  (0.0ms) SAVEPOINT active_record_1
17225
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'bad_actor@gmail.com') LIMIT 1
17226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17227
+  (0.5ms) rollback transaction
17228
+  (0.1ms) begin transaction
17229
+  (0.1ms) SAVEPOINT active_record_1
17230
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17231
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17232
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$JF1C14ofpUKHlw7OFRKUr.gXmkoEGDCPkY76x7z3nZ9q7rygH1A9i"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.633358"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.633234"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.633336"], ["created_at", "2015-07-07 04:56:13.639558"], ["updated_at", "2015-07-07 04:56:13.639558"]]
17233
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17234
+  (0.1ms) SAVEPOINT active_record_1
17235
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17237
+  (0.5ms) rollback transaction
17238
+  (0.1ms) begin transaction
17239
+  (0.1ms) SAVEPOINT active_record_1
17240
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17241
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17242
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$GQNFyz87./UMMgNQsyYNEOy4TKD1i2F8ptshfYYOQBKpAHX9xuMLi"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.646045"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.645863"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.646008"], ["created_at", "2015-07-07 04:56:13.650815"], ["updated_at", "2015-07-07 04:56:13.650815"]]
17243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17244
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17245
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "hsDA4LzAbpwSAyzfnecp4aJ79VMdxiHGJdFb1ytTzsgr"]]
17246
+  (0.1ms) SAVEPOINT active_record_1
17247
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "hsDA4LzAbpwSAyzfnecp4aJ79VMdxiHGJdFb1ytTzsgr"], ["auth_token_expires_at", "2015-07-08 04:56:13.656448"], ["updated_at", "2015-07-07 04:56:13.657071"], ["id", 1]]
17248
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17249
+  (0.9ms) rollback transaction
17250
+  (0.1ms) begin transaction
17251
+  (0.1ms) SAVEPOINT active_record_1
17252
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17253
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17254
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Uovrpkzmzpg6NxOH2nIG8eKnIhG9TV68kdIrMV2DPbn3F27cosJf2"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.661348"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.661194"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.661319"], ["created_at", "2015-07-07 04:56:13.666603"], ["updated_at", "2015-07-07 04:56:13.666603"]]
17255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17256
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17257
+  (0.5ms) rollback transaction
17258
+  (0.1ms) begin transaction
17259
+  (0.1ms) SAVEPOINT active_record_1
17260
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17261
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17262
+ SQL (0.2ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$55PiElSiKDcvvYOaHTiAbOzmbANzLeN88/lkJHeP0Blw/4GvmDWaq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:56:13.672846"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:56:13.672640"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:56:13.672757"], ["created_at", "2015-07-07 04:56:13.678539"], ["updated_at", "2015-07-07 04:56:13.678539"]]
17263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17264
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
17265
+  (0.5ms) rollback transaction
17266
+  (2.2ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "password_digest" varchar, "auth_token" varchar, "auth_token_expires_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "password_reset_token" varchar, "password_reset_token_expires_at" datetime, "activated_at" datetime, "activation_token" varchar, "activation_token_expires_at" datetime, "auth_token_ttl" integer DEFAULT 86400 NOT NULL) 
17267
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
17268
+  (0.1ms) select sqlite_version(*)
17269
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17270
+  (0.2ms) SELECT version FROM "schema_migrations"
17271
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150413161345')
17272
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150127045508')
17273
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150210215727')
17274
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150211185152')
17275
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
17276
+  (0.3ms) begin transaction
17277
+  (0.1ms) SAVEPOINT active_record_1
17278
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.1@baz.org' LIMIT 1
17279
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17280
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "8mQRx4fzYqpsKqL91ZEYBi5mCbhZxwG5rAzoownzQaAr"]]
17281
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.1@baz.org"], ["password_digest", "$2a$04$Mo635ORJ0YKyX2UaR1Wh1.9fWHIXYpxfjGHRNckmGaB0moQkNEvKi"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.545009"], ["auth_token", "8mQRx4fzYqpsKqL91ZEYBi5mCbhZxwG5rAzoownzQaAr"], ["auth_token_expires_at", "2015-07-08 04:59:28.563277"], ["created_at", "2015-07-07 04:59:28.563783"], ["updated_at", "2015-07-07 04:59:28.563783"]]
17282
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17283
+ SQL (0.4ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:28.566560', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17284
+ Processing by AccountsController#index as HTML
17285
+ Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
17286
+  (0.9ms) rollback transaction
17287
+  (0.1ms) begin transaction
17288
+  (0.1ms) SAVEPOINT active_record_1
17289
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.2@baz.org' LIMIT 1
17290
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17291
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "BxGuutKxrczgyVTZyPoTX5WmLhYCEaPgipRYpZGpiMQr"]]
17292
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.2@baz.org"], ["password_digest", "$2a$04$8tV9dUmNaFtV8dvS0YUyS.g6fwk91nncAfCqN1UOsNvPydlbpLb3C"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.582208"], ["auth_token", "BxGuutKxrczgyVTZyPoTX5WmLhYCEaPgipRYpZGpiMQr"], ["auth_token_expires_at", "2015-07-08 04:59:28.588270"], ["created_at", "2015-07-07 04:59:28.588562"], ["updated_at", "2015-07-07 04:59:28.588562"]]
17293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17294
+ SQL (0.5ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:28.591369', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17295
+ Processing by AccountsController#show as HTML
17296
+ Parameters: {"id"=>"1"}
17297
+  (0.1ms) SAVEPOINT active_record_1
17298
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.2@baz.org') LIMIT 1
17299
+ SQL (0.2ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:28.596638' WHERE "accounts"."id" = ? [["id", 1]]
17300
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17301
+ Completed 200 OK in 4ms (ActiveRecord: 0.7ms)
17302
+  (0.7ms) rollback transaction
17303
+  (0.1ms) begin transaction
17304
+ Processing by AccountsController#index as HTML
17305
+ Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
17306
+  (0.1ms) rollback transaction
17307
+  (0.1ms) begin transaction
17308
+ Processing by AccountsController#show as HTML
17309
+ Parameters: {"id"=>"1"}
17310
+ Filter chain halted as :authenticate_from_account_token! rendered or redirected
17311
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
17312
+  (0.1ms) rollback transaction
17313
+  (0.1ms) begin transaction
17314
+  (0.1ms) SAVEPOINT active_record_1
17315
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.3@baz.org' LIMIT 1
17316
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17317
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "uC8kCFnSpc5wxDPsz96Cbw1gVB5atytzq7JhFL8yzeor"]]
17318
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.3@baz.org"], ["password_digest", "$2a$04$JPDS1hKySYt35DSXC5YgROGz5VvW2rVhFdvbGxUXModiXBlVaN0kq"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.614373"], ["auth_token", "uC8kCFnSpc5wxDPsz96Cbw1gVB5atytzq7JhFL8yzeor"], ["auth_token_expires_at", "2015-07-08 04:59:28.618343"], ["created_at", "2015-07-07 04:59:28.618726"], ["updated_at", "2015-07-07 04:59:28.618726"]]
17319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17320
+ Processing by AccountsController#index as HTML
17321
+ Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
17322
+  (0.5ms) rollback transaction
17323
+  (0.1ms) begin transaction
17324
+  (0.1ms) SAVEPOINT active_record_1
17325
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.4@baz.org' LIMIT 1
17326
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17327
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "e4nyAEzvMR6VisDdixZ8MnzwbHcxENaPtR9WsoQP5pgr"]]
17328
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.4@baz.org"], ["password_digest", "$2a$04$uMMtsO0u1xIb0M5b2QYUquUqdMSdOyYArwuwmO8HBR23Zy25wLneW"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.632038"], ["auth_token", "e4nyAEzvMR6VisDdixZ8MnzwbHcxENaPtR9WsoQP5pgr"], ["auth_token_expires_at", "2015-07-08 04:59:28.640041"], ["created_at", "2015-07-07 04:59:28.640332"], ["updated_at", "2015-07-07 04:59:28.640332"]]
17329
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17330
+ Processing by AccountsController#show as HTML
17331
+ Parameters: {"id"=>"1"}
17332
+  (0.1ms) SAVEPOINT active_record_1
17333
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.4@baz.org') LIMIT 1
17334
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:28.646745' WHERE "accounts"."id" = ? [["id", 1]]
17335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17336
+ Filter chain halted as :enforce_activation! rendered or redirected
17337
+ Completed 403 Forbidden in 3ms (ActiveRecord: 0.7ms)
17338
+  (0.8ms) rollback transaction
17339
+  (0.1ms) begin transaction
17340
+  (0.1ms) rollback transaction
17341
+  (0.1ms) begin transaction
17342
+  (0.1ms) SAVEPOINT active_record_1
17343
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.5@baz.org' LIMIT 1
17344
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17345
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "ynB4pcNYpPVz2JCCzjEpuz6zkTLZzLnGrqp2zYsEa9or"]]
17346
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.5@baz.org"], ["password_digest", "$2a$04$3ud8mf3t8mZwAbVnl4r3Uu9GzXyR243Ird3HnQtpHDhd9Ou9LRrTG"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.659913"], ["auth_token", "ynB4pcNYpPVz2JCCzjEpuz6zkTLZzLnGrqp2zYsEa9or"], ["auth_token_expires_at", "2015-07-08 04:59:28.664246"], ["created_at", "2015-07-07 04:59:28.664576"], ["updated_at", "2015-07-07 04:59:28.664576"]]
17347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17348
+ Processing by AccountsController#show as HTML
17349
+ Parameters: {"id"=>"1"}
17350
+  (0.1ms) SAVEPOINT active_record_1
17351
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foo.bar.5@baz.org') LIMIT 1
17352
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:28.670944' WHERE "accounts"."id" = ? [["id", 1]]
17353
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17354
+ Filter chain halted as :enforce_activation! rendered or redirected
17355
+ Completed 403 Forbidden in 4ms (ActiveRecord: 0.9ms)
17356
+  (1.1ms) rollback transaction
17357
+  (0.1ms) begin transaction
17358
+  (0.1ms) SAVEPOINT active_record_1
17359
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" IS NULL LIMIT 1
17360
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17361
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
17362
+  (0.1ms) rollback transaction
17363
+  (0.1ms) begin transaction
17364
+  (0.1ms) SAVEPOINT active_record_1
17365
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17366
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17367
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "k1CADbG9ctBco8VnbrvZLMhge8zzHcpVdc4zJyC2bczr"]]
17368
+ SQL (0.8ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$NJX/1e0IerduCZVIf5KRduh.4V3fDSTNpYLA68wIMg6LpNIycupiG"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.715828"], ["auth_token", "k1CADbG9ctBco8VnbrvZLMhge8zzHcpVdc4zJyC2bczr"], ["auth_token_expires_at", "2015-07-08 04:59:28.718345"], ["created_at", "2015-07-07 04:59:28.718587"], ["updated_at", "2015-07-07 04:59:28.718587"]]
17369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17370
+  (0.1ms) SAVEPOINT active_record_1
17371
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17372
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17373
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17374
+  (0.8ms) rollback transaction
17375
+  (0.1ms) begin transaction
17376
+  (0.0ms) SAVEPOINT active_record_1
17377
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.6@baz.org' LIMIT 1
17378
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17379
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17380
+  (0.1ms) rollback transaction
17381
+  (0.1ms) begin transaction
17382
+  (0.1ms) SAVEPOINT active_record_1
17383
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.7@baz.org' LIMIT 1
17384
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17385
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
17386
+  (0.1ms) rollback transaction
17387
+  (0.1ms) begin transaction
17388
+  (0.0ms) SAVEPOINT active_record_1
17389
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.8@baz.org' LIMIT 1
17390
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17391
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
17392
+  (0.1ms) rollback transaction
17393
+  (0.1ms) begin transaction
17394
+  (0.1ms) SAVEPOINT active_record_1
17395
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.9@baz.org' LIMIT 1
17396
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17397
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "nGhJ7nqFCzGYLGxff37V3UPyq9yE4QqgZsbZwqpxxuUr"]]
17398
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.9@baz.org"], ["password_digest", "$2a$04$9/quWKovUgLCLCKIcsh0A.c/mdHHF8j8r//QYqcIugjN97mUYRBFO"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.761209"], ["auth_token", "nGhJ7nqFCzGYLGxff37V3UPyq9yE4QqgZsbZwqpxxuUr"], ["auth_token_expires_at", "2015-07-08 04:59:28.764403"], ["created_at", "2015-07-07 04:59:28.764777"], ["updated_at", "2015-07-07 04:59:28.764777"]]
17399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17400
+  (0.1ms) SAVEPOINT active_record_1
17401
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.9@baz.org' AND "accounts"."id" != 1) LIMIT 1
17402
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
17403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17404
+  (0.0ms) SAVEPOINT active_record_1
17405
+ SQL (0.7ms) UPDATE "accounts" SET "password_digest" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["password_digest", nil], ["updated_at", "2015-07-07 04:59:28.772779"], ["id", 1]]
17406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17407
+  (1.5ms) rollback transaction
17408
+  (0.1ms) begin transaction
17409
+  (0.1ms) SAVEPOINT active_record_1
17410
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.10@baz.org' LIMIT 1
17411
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17412
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "vocmGzshiy4pTLK2q9vxuguoyYHMA94sLHFPaGuc1jgr"]]
17413
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.10@baz.org"], ["password_digest", "$2a$04$gOyasxJwDJXfGLrD/1U6du06QUdClmBQ01rSVT9N.XCdYk2A79tOq"], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.782014"], ["auth_token", "vocmGzshiy4pTLK2q9vxuguoyYHMA94sLHFPaGuc1jgr"], ["auth_token_expires_at", "2015-07-08 04:59:28.786707"], ["created_at", "2015-07-07 04:59:28.787061"], ["updated_at", "2015-07-07 04:59:28.787061"]]
17414
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17415
+  (0.1ms) SAVEPOINT active_record_1
17416
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.10@baz.org' AND "accounts"."id" != 1) LIMIT 1
17417
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
17418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17419
+  (0.2ms) SAVEPOINT active_record_1
17420
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.10@baz.org' AND "accounts"."id" != 1) LIMIT 1
17421
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
17422
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17423
+  (1.2ms) rollback transaction
17424
+  (0.1ms) begin transaction
17425
+  (0.1ms) SAVEPOINT active_record_1
17426
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.11@baz.org' LIMIT 1
17427
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'thisismytoken' LIMIT 1
17428
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "JSqcjk928bLrBG8ZTMgryk8piUbsspEwW3LtnbmbUpxr"]]
17429
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.11@baz.org"], ["password_digest", "$2a$04$Byj2Tyj9OkPowKomj6jwF.bDs40iGOa1SfXqa.pEZnOJogFWQ1pE."], ["activation_token", "thisismytoken"], ["activation_token_expires_at", "2015-07-07 05:59:28.806122"], ["auth_token", "JSqcjk928bLrBG8ZTMgryk8piUbsspEwW3LtnbmbUpxr"], ["auth_token_expires_at", "2015-07-08 04:59:28.809364"], ["created_at", "2015-07-07 04:59:28.809798"], ["updated_at", "2015-07-07 04:59:28.809798"]]
17430
+  (0.5ms) RELEASE SAVEPOINT active_record_1
17431
+  (0.1ms) SAVEPOINT active_record_1
17432
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.11@baz.org' AND "accounts"."id" != 1) LIMIT 1
17433
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
17434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17435
+  (0.1ms) SAVEPOINT active_record_1
17436
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.11@baz.org' AND "accounts"."id" != 1) LIMIT 1
17437
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'thisismytoken' AND "accounts"."id" != 1) LIMIT 1
17438
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17439
+  (0.7ms) rollback transaction
17440
+  (0.1ms) begin transaction
17441
+  (0.1ms) SAVEPOINT active_record_1
17442
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.12@baz.org' LIMIT 1
17443
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
17444
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "4U4sMKCx5B7b9piwBLyFFPqWgjAX5RBnT1yghgCXYpUr"]]
17445
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.12@baz.org"], ["password_digest", "$2a$04$V4EhY22OXbBzXHMbiSIinurYD03jDnaeCW8dzi2hIa8btAzDvGWFS"], ["activation_token", "my_token"], ["activation_token_expires_at", "2015-07-07 05:59:28.827797"], ["auth_token", "4U4sMKCx5B7b9piwBLyFFPqWgjAX5RBnT1yghgCXYpUr"], ["auth_token_expires_at", "2015-07-08 04:59:28.835268"], ["created_at", "2015-07-07 04:59:28.835839"], ["updated_at", "2015-07-07 04:59:28.835839"]]
17446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17447
+  (0.1ms) SAVEPOINT active_record_1
17448
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.12@baz.org' AND "accounts"."id" != 1) LIMIT 1
17449
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'my_token' AND "accounts"."id" != 1) LIMIT 1
17450
+  (0.4ms) RELEASE SAVEPOINT active_record_1
17451
+  (0.5ms) rollback transaction
17452
+  (0.1ms) begin transaction
17453
+  (0.1ms) SAVEPOINT active_record_1
17454
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
17455
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
17456
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17457
+  (0.0ms) SAVEPOINT active_record_1
17458
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.13@baz.org' LIMIT 1
17459
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
17460
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17461
+  (0.1ms) rollback transaction
17462
+  (0.1ms) begin transaction
17463
+  (0.1ms) SAVEPOINT active_record_1
17464
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
17465
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
17466
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17467
+  (0.0ms) SAVEPOINT active_record_1
17468
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.14@baz.org' LIMIT 1
17469
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
17470
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17471
+  (0.1ms) rollback transaction
17472
+  (0.1ms) begin transaction
17473
+  (0.1ms) SAVEPOINT active_record_1
17474
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
17475
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
17476
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
17477
+  (0.0ms) SAVEPOINT active_record_1
17478
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.15@baz.org' LIMIT 1
17479
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
17480
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17481
+  (0.1ms) rollback transaction
17482
+  (0.1ms) begin transaction
17483
+  (0.1ms) SAVEPOINT active_record_1
17484
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
17485
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
17486
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17487
+  (0.1ms) SAVEPOINT active_record_1
17488
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.16@baz.org' LIMIT 1
17489
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" IS NULL LIMIT 1
17490
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17491
+  (0.1ms) rollback transaction
17492
+  (0.2ms) begin transaction
17493
+  (0.1ms) SAVEPOINT active_record_1
17494
+ Account Exists (1.7ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.17@baz.org' LIMIT 1
17495
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
17496
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "4gB8JTuGPLb51MzvVEvnHcMsnSSoMpx9ryAQt2op52Qr"]]
17497
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.17@baz.org"], ["password_digest", "$2a$04$dq2cVjab4EusbZbWGR/kc.SyXLYplMOF79AO.tyNam9Lv0VJhyFd."], ["activation_token", "my_token"], ["activation_token_expires_at", "2015-07-07 05:59:28.896949"], ["auth_token", "4gB8JTuGPLb51MzvVEvnHcMsnSSoMpx9ryAQt2op52Qr"], ["auth_token_expires_at", "2015-07-08 04:59:28.906378"], ["created_at", "2015-07-07 04:59:28.906606"], ["updated_at", "2015-07-07 04:59:28.906606"]]
17498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17499
+  (0.1ms) SAVEPOINT active_record_1
17500
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."email" = 'foo.bar.17@baz.org' AND "accounts"."id" != 1) LIMIT 1
17501
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE ("accounts"."activation_token" = 'my_token' AND "accounts"."id" != 1) LIMIT 1
17502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17503
+  (0.2ms) SAVEPOINT active_record_1
17504
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.18@baz.org' LIMIT 1
17505
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'my_token' LIMIT 1
17506
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
17507
+  (0.6ms) rollback transaction
17508
+  (0.1ms) begin transaction
17509
+  (0.1ms) SAVEPOINT active_record_1
17510
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
17511
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
17512
+  (0.0ms) SAVEPOINT active_record_1
17513
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.19@baz.org' LIMIT 1
17514
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
17515
+  (0.1ms) rollback transaction
17516
+  (0.2ms) begin transaction
17517
+  (0.1ms) SAVEPOINT active_record_1
17518
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.20@baz.org' LIMIT 1
17519
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17520
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "xSpEqHv5UZpj9UZtq4Mq7UkEJNQt2zHRMQfGRrgvGpcr"]]
17521
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "auth_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.20@baz.org"], ["password_digest", "$2a$04$/j1etm5QkfPDzd6wWqkpiuQUNYAO5zKnLZbDvw/SwuRVwyz4lMcp."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:28.933338"], ["auth_token_expires_at", "2015-07-08 04:59:28.940969"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:28.933310"], ["auth_token", "xSpEqHv5UZpj9UZtq4Mq7UkEJNQt2zHRMQfGRrgvGpcr"], ["created_at", "2015-07-07 04:59:28.941438"], ["updated_at", "2015-07-07 04:59:28.941438"]]
17522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17523
+  (0.6ms) rollback transaction
17524
+  (0.1ms) begin transaction
17525
+  (0.0ms) SAVEPOINT active_record_1
17526
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.21@baz.org' LIMIT 1
17527
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17528
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.21@baz.org"], ["password_digest", "$2a$04$HLhTAkadX9O.hO5.v9p/2.7YmWxZlztvFHkEn9RYvuVZRT0KtcPVm"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:28.947375"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:28.947229"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:28.947354"], ["created_at", "2015-07-07 04:59:28.952608"], ["updated_at", "2015-07-07 04:59:28.952608"]]
17529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17530
+  (0.5ms) rollback transaction
17531
+  (0.1ms) begin transaction
17532
+  (0.0ms) SAVEPOINT active_record_1
17533
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.22@baz.org' LIMIT 1
17534
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17535
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.22@baz.org"], ["password_digest", "$2a$04$gEgIMRuLq1YJ9/SdP3sMie8WC346Rk9/3f/eCIOE5mOqSfzXN3SkK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:28.959081"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:28.958952"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:28.959060"], ["created_at", "2015-07-07 04:59:28.963906"], ["updated_at", "2015-07-07 04:59:28.963906"]]
17536
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17537
+  (0.5ms) rollback transaction
17538
+  (0.1ms) begin transaction
17539
+  (0.1ms) SAVEPOINT active_record_1
17540
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.23@baz.org' LIMIT 1
17541
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17542
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.23@baz.org"], ["password_digest", "$2a$04$FaBMVSfn.aamiZnDUIJc9OO5smSYIqYLm9G76JUOJB65fgyegBlfK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:28.967715"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:28.967580"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:28.967690"], ["created_at", "2015-07-07 04:59:28.974088"], ["updated_at", "2015-07-07 04:59:28.974088"]]
17543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17544
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "vqxNyH92F6Eqogw4PZ89AZnqVnTpqoQYYcQSPL8w7xMr"]]
17545
+  (0.6ms) rollback transaction
17546
+  (0.1ms) begin transaction
17547
+  (0.2ms) SAVEPOINT active_record_1
17548
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.24@baz.org' LIMIT 1
17549
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17550
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.24@baz.org"], ["password_digest", "$2a$04$v4jhTlOYMkQXVxxWGbDXF.MhQQy2rp4pfj2rRofGCh3HXddVFtnpW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:28.979408"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:28.979275"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:28.979387"], ["created_at", "2015-07-07 04:59:28.985435"], ["updated_at", "2015-07-07 04:59:28.985435"]]
17551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17552
+  (0.5ms) rollback transaction
17553
+  (0.1ms) begin transaction
17554
+  (0.1ms) SAVEPOINT active_record_1
17555
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.25@baz.org' LIMIT 1
17556
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17557
+ SQL (0.7ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.25@baz.org"], ["password_digest", "$2a$04$glUYXoblmCh9a2toWgVdleIGFZukrq1T0ere.ko7JgLev6weTXbLO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:28.990676"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:28.990546"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:28.990652"], ["created_at", "2015-07-07 04:59:28.995857"], ["updated_at", "2015-07-07 04:59:28.995857"]]
17558
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17559
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "GpyYoCpRAR7qxxt9NSWBpRQ5GkP4zqDkz2TMTYtqhXAr"]]
17560
+  (1.9ms) rollback transaction
17561
+  (0.1ms) begin transaction
17562
+  (0.1ms) SAVEPOINT active_record_1
17563
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.26@baz.org' LIMIT 1
17564
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17565
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.26@baz.org"], ["password_digest", "$2a$04$9Hikcql372Z1rFo5rfUOMOOnunZtK1e8eTHNFf1JiN//uiYm5Ipha"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.007544"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.007310"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.007464"], ["created_at", "2015-07-07 04:59:29.013862"], ["updated_at", "2015-07-07 04:59:29.013862"]]
17566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17567
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "8sbgHisUYPU8xhgjSgmKH2boC9KeqoqpQsYwpsqKp4Yr"]]
17568
+  (0.6ms) rollback transaction
17569
+  (0.1ms) begin transaction
17570
+  (0.1ms) SAVEPOINT active_record_1
17571
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.27@baz.org' LIMIT 1
17572
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17573
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.27@baz.org"], ["password_digest", "$2a$04$k32O5mjpoIQK/ObPCVzVtubWe1oPyR070HuLQHToIf5owpljSz71u"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.041305"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.041159"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.041264"], ["created_at", "2015-07-07 04:59:29.046171"], ["updated_at", "2015-07-07 04:59:29.046171"]]
17574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17575
+  (0.6ms) rollback transaction
17576
+  (0.2ms) begin transaction
17577
+  (0.1ms) SAVEPOINT active_record_1
17578
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.28@baz.org' LIMIT 1
17579
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17580
+ SQL (1.1ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.28@baz.org"], ["password_digest", "$2a$04$j8xnl1Z/fpz3qNWQSVFNSeBkEDk.GUss1h3TY4aHMIjEbzSy3Dao6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.050629"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.050500"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.050607"], ["created_at", "2015-07-07 04:59:29.056927"], ["updated_at", "2015-07-07 04:59:29.056927"]]
17581
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17582
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "xi3BNfkAb5KoxDSH9wdBgQvDZX778njqa71qtDQtrDkr"]]
17583
+  (0.1ms) SAVEPOINT active_record_1
17584
+ SQL (1.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "xi3BNfkAb5KoxDSH9wdBgQvDZX778njqa71qtDQtrDkr"], ["auth_token_expires_at", "2015-07-08 04:59:29.061696"], ["updated_at", "2015-07-07 04:59:29.062480"], ["id", 1]]
17585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17586
+  (0.8ms) rollback transaction
17587
+  (0.1ms) begin transaction
17588
+  (0.1ms) SAVEPOINT active_record_1
17589
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.29@baz.org' LIMIT 1
17590
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17591
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.29@baz.org"], ["password_digest", "$2a$04$2qU9/Fvs6eQaXIP0wBo5Kurx4BRX5t9.j//e1TO7ls44Fzqge9ueW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.067220"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.067079"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.067198"], ["created_at", "2015-07-07 04:59:29.074765"], ["updated_at", "2015-07-07 04:59:29.074765"]]
17592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17593
+  (0.9ms) rollback transaction
17594
+  (0.1ms) begin transaction
17595
+  (0.1ms) SAVEPOINT active_record_1
17596
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.30@baz.org' LIMIT 1
17597
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17598
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.30@baz.org"], ["password_digest", "$2a$04$xSVfMSO2.f.nAHGa3y2gDeNjaEjyI.2K53ZYCBLbPzjmbnrOdlIri"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.079408"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.079260"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.079376"], ["created_at", "2015-07-07 04:59:29.085489"], ["updated_at", "2015-07-07 04:59:29.085489"]]
17599
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17600
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "Y83c3wVMqysWWZDNLzFLmR4kmYzJLqWAaeezpkFXqxAr"]]
17601
+  (0.0ms) SAVEPOINT active_record_1
17602
+ SQL (0.3ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "Y83c3wVMqysWWZDNLzFLmR4kmYzJLqWAaeezpkFXqxAr"], ["auth_token_expires_at", "2015-07-08 04:59:29.089974"], ["updated_at", "2015-07-07 04:59:29.090435"], ["id", 1]]
17603
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17604
+  (0.7ms) rollback transaction
17605
+  (0.1ms) begin transaction
17606
+  (0.0ms) SAVEPOINT active_record_1
17607
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.31@baz.org' LIMIT 1
17608
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17609
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.31@baz.org"], ["password_digest", "$2a$04$xdhZYARQdn8YKCEgpaoKQOFw6eYJqk797GEQaCpJcFflq5R682yxe"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.093845"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.093712"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.093821"], ["created_at", "2015-07-07 04:59:29.098671"], ["updated_at", "2015-07-07 04:59:29.098671"]]
17610
+  (0.5ms) RELEASE SAVEPOINT active_record_1
17611
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "XyubTnAmJmUUSR5sp7rdry4oAXcKKz8mMVvWBRQQ3zwr"]]
17612
+  (0.5ms) rollback transaction
17613
+  (0.1ms) begin transaction
17614
+  (0.3ms) SAVEPOINT active_record_1
17615
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.32@baz.org' LIMIT 1
17616
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17617
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.32@baz.org"], ["password_digest", "$2a$04$vNq3PranjcPzeOELutiq1upZK9lFvzGBarHwv.TMz2gTuoAap9byG"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.107656"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-07 05:00:29.107551"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.107638"], ["created_at", "2015-07-07 04:59:29.114972"], ["updated_at", "2015-07-07 04:59:29.114972"]]
17618
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17619
+  (0.9ms) rollback transaction
17620
+  (0.1ms) begin transaction
17621
+  (0.1ms) SAVEPOINT active_record_1
17622
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.33@baz.org' LIMIT 1
17623
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17624
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.33@baz.org"], ["password_digest", "$2a$04$8G4V3.IIoqYdSEmtOZKbT.ursH9bGWY.fn1jqvgF1AjIn436FMmYq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.119411"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-07 04:58:29.119352"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.119394"], ["created_at", "2015-07-07 04:59:29.127936"], ["updated_at", "2015-07-07 04:59:29.127936"]]
17625
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17626
+  (0.6ms) rollback transaction
17627
+  (0.1ms) begin transaction
17628
+  (0.1ms) SAVEPOINT active_record_1
17629
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.34@baz.org' LIMIT 1
17630
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17631
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.34@baz.org"], ["password_digest", "$2a$04$ZeGxmP5yfZ890Hlu5t/Q3u6NsAVrl/crL0GrnceW7SekBXYKvmI06"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.135073"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.134774"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.135019"], ["created_at", "2015-07-07 04:59:29.142700"], ["updated_at", "2015-07-07 04:59:29.142700"]]
17632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17633
+  (0.6ms) rollback transaction
17634
+  (0.1ms) begin transaction
17635
+  (0.1ms) SAVEPOINT active_record_1
17636
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.35@baz.org' LIMIT 1
17637
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17638
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.35@baz.org"], ["password_digest", "$2a$04$FGMIoWGfb3R5WfS9uzVKtuRvT4KUGpfVXN4Uf6hcUIfMMVie1/.3q"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.146682"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.146552"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.146660"], ["created_at", "2015-07-07 04:59:29.151644"], ["updated_at", "2015-07-07 04:59:29.151644"]]
17639
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17640
+  (0.5ms) rollback transaction
17641
+  (0.1ms) begin transaction
17642
+  (0.1ms) SAVEPOINT active_record_1
17643
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.36@baz.org' LIMIT 1
17644
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17645
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.36@baz.org"], ["password_digest", "$2a$04$4VgJMLaIGUsBEX/8eZkH3.eShpOSYXnfaeI4MHdUTgdTqkDF9oTyO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.159199"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.159073"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.159179"], ["created_at", "2015-07-07 04:59:29.164975"], ["updated_at", "2015-07-07 04:59:29.164975"]]
17646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17647
+  (0.5ms) rollback transaction
17648
+  (0.1ms) begin transaction
17649
+  (0.1ms) SAVEPOINT active_record_1
17650
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.37@baz.org' LIMIT 1
17651
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17652
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.37@baz.org"], ["password_digest", "$2a$04$SNVd6xTRQvcsw6FSaGtHQutkZp6BNfvr7hmNY6U7Ws71AaXa79tte"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.168734"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.168612"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 03:59:29.168714"], ["created_at", "2015-07-07 04:59:29.174258"], ["updated_at", "2015-07-07 04:59:29.174258"]]
17653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17654
+  (0.5ms) rollback transaction
17655
+  (0.1ms) begin transaction
17656
+  (0.1ms) SAVEPOINT active_record_1
17657
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.38@baz.org' LIMIT 1
17658
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17659
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.38@baz.org"], ["password_digest", "$2a$04$ihZLpT/qa0.1qEuoVFmSGuxUWjd7VDnfS3.oQuAp8EkFui0lmEK.a"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.177949"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.177790"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.177927"], ["created_at", "2015-07-07 04:59:29.182536"], ["updated_at", "2015-07-07 04:59:29.182536"]]
17660
+  (2.3ms) RELEASE SAVEPOINT active_record_1
17661
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "cgoryutxJ7pbpnb3B7L8yFyW6ZqE2EpFx4oDZwdqj5wr"]]
17662
+  (0.5ms) rollback transaction
17663
+  (0.1ms) begin transaction
17664
+  (0.1ms) SAVEPOINT active_record_1
17665
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.39@baz.org' LIMIT 1
17666
+ Account Exists (1.0ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17667
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.39@baz.org"], ["password_digest", "$2a$04$sFyNWOt3m5GC8aVRZPNhTOsGAOlvPjAsnHOqzq2Fl3p5m8rBx1VYS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.192051"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.191908"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.192028"], ["created_at", "2015-07-07 04:59:29.203840"], ["updated_at", "2015-07-07 04:59:29.203840"]]
17668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17669
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "Zf4Z8NnsLHRThpzBcyVGp8Su1D2Z33CkCszpwuZxPsMr"]]
17670
+  (0.6ms) rollback transaction
17671
+  (0.1ms) begin transaction
17672
+  (0.1ms) SAVEPOINT active_record_1
17673
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.40@baz.org' LIMIT 1
17674
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17675
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.40@baz.org"], ["password_digest", "$2a$04$NLtrtZsVBhtUFd4pjoKM2.0vyTM38YstxlkrLEgCAYZCBsNtuak3."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.211216"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.211088"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.211194"], ["created_at", "2015-07-07 04:59:29.216192"], ["updated_at", "2015-07-07 04:59:29.216192"]]
17676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17677
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "wHW2VsJxuGDqx2zzpVe5mraa5wsuyp8baLyVDnGH7f4r"]]
17678
+  (0.6ms) rollback transaction
17679
+  (0.1ms) begin transaction
17680
+  (0.1ms) SAVEPOINT active_record_1
17681
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.41@baz.org' LIMIT 1
17682
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17683
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.41@baz.org"], ["password_digest", "$2a$04$LOasGXzfF3qlri/3LXwbp.m63DM8FIpeIY4ea4RJo9L0yGnkxjtXu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.225120"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.224874"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.225093"], ["created_at", "2015-07-07 04:59:29.233667"], ["updated_at", "2015-07-07 04:59:29.233667"]]
17684
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17685
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "tq5bJPfXbKQyMmtsNzTZbyn2yS12KmjB8aCgSUjH3Dgr"]]
17686
+  (0.6ms) rollback transaction
17687
+  (0.1ms) begin transaction
17688
+  (0.1ms) SAVEPOINT active_record_1
17689
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.42@baz.org' LIMIT 1
17690
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17691
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.42@baz.org"], ["password_digest", "$2a$04$uWAQBTA3sNWT2P7klABRd.W2FY3MwV1Bq.fUHm3nQ9wv/61gcVAIS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.240335"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.240193"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.240306"], ["created_at", "2015-07-07 04:59:29.248722"], ["updated_at", "2015-07-07 04:59:29.248722"]]
17692
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17693
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "oLVq7swvAs2FobMaDyRJx5sMosEXM8UXVsS1gvpmwfxr"]]
17694
+  (3.1ms) rollback transaction
17695
+  (0.1ms) begin transaction
17696
+  (0.1ms) SAVEPOINT active_record_1
17697
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.43@baz.org' LIMIT 1
17698
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17699
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.43@baz.org"], ["password_digest", "$2a$04$dercDvS3NXUCAFgbs4X7jOC2bB0tWg09NksmxsnvX8DTGx207.p/2"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.257448"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.257238"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.257403"], ["created_at", "2015-07-07 04:59:29.266846"], ["updated_at", "2015-07-07 04:59:29.266846"]]
17700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17701
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."password_reset_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["password_reset_token", "Y9EHzD3Cuqh6xgP69q3K4uCzWjAfAxhiyd3DuRzcHksr"]]
17702
+  (1.3ms) rollback transaction
17703
+  (0.2ms) begin transaction
17704
+  (0.1ms) SAVEPOINT active_record_1
17705
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.44@baz.org' LIMIT 1
17706
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17707
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.44@baz.org"], ["password_digest", "$2a$04$ai9c1uBQK1mtTDGK2AkBx.pnj5im2.VtG1QAeGbypoYLqJGZS2N0S"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.276209"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.275926"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.276150"], ["created_at", "2015-07-07 04:59:29.285354"], ["updated_at", "2015-07-07 04:59:29.285354"]]
17708
+  (0.3ms) RELEASE SAVEPOINT active_record_1
17709
+ SQL (0.4ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17710
+  (1.3ms) rollback transaction
17711
+  (0.1ms) begin transaction
17712
+  (0.1ms) SAVEPOINT active_record_1
17713
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.45@baz.org' LIMIT 1
17714
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17715
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.45@baz.org"], ["password_digest", "$2a$04$aX59KIzX.pU9ZzEgBZ/bIefKC5NZPCjZ.SJZb1bP1Yma8mq.4qyd."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.295596"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.295283"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.295543"], ["created_at", "2015-07-07 04:59:29.306508"], ["updated_at", "2015-07-07 04:59:29.306508"]]
17716
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17717
+ SQL (0.3ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17718
+  (0.8ms) rollback transaction
17719
+  (0.1ms) begin transaction
17720
+  (0.2ms) SAVEPOINT active_record_1
17721
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.46@baz.org' LIMIT 1
17722
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17723
+ SQL (1.0ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.46@baz.org"], ["password_digest", "$2a$04$.e/F8bl4lzw.5GIND6aY6uvN91SLRz0j4Y1yWKsMBy9w6c//SCM.G"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.311749"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.311577"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.311719"], ["created_at", "2015-07-07 04:59:29.316793"], ["updated_at", "2015-07-07 04:59:29.316793"]]
17724
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17725
+ SQL (0.4ms) UPDATE "accounts" SET "password_reset_token" = NULL, "password_reset_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17726
+  (0.7ms) rollback transaction
17727
+  (0.1ms) begin transaction
17728
+  (0.1ms) SAVEPOINT active_record_1
17729
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.47@baz.org' LIMIT 1
17730
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17731
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.47@baz.org"], ["password_digest", "$2a$04$1BlBNaNwEiCP6/liqZJYsuoElxb8GmumFqBmk8DeHSkB/GsoRqP0y"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.323125"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.322986"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.323099"], ["created_at", "2015-07-07 04:59:29.331318"], ["updated_at", "2015-07-07 04:59:29.331318"]]
17732
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17733
+  (0.5ms) rollback transaction
17734
+  (0.1ms) begin transaction
17735
+  (0.4ms) SAVEPOINT active_record_1
17736
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.48@baz.org' LIMIT 1
17737
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17738
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.48@baz.org"], ["password_digest", "$2a$04$Oapy6tHTv9WuGiws3fNil.q0dxyHas9N5EczDOFOQQi3yskIQoGfm"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.338036"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.337720"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.337999"], ["created_at", "2015-07-07 04:59:29.347518"], ["updated_at", "2015-07-07 04:59:29.347518"]]
17739
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17740
+  (0.4ms) rollback transaction
17741
+  (0.1ms) begin transaction
17742
+  (0.1ms) SAVEPOINT active_record_1
17743
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.49@baz.org' LIMIT 1
17744
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17745
+ SQL (0.8ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.49@baz.org"], ["password_digest", "$2a$04$yr/18qCiZNmY6iBleX7DA.DPdnY.kozP/KqbWdHo0fqkhbDlJOGLq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.354617"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.354346"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.354591"], ["created_at", "2015-07-07 04:59:29.362331"], ["updated_at", "2015-07-07 04:59:29.362331"]]
17746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17747
+  (0.5ms) rollback transaction
17748
+  (0.1ms) begin transaction
17749
+  (0.1ms) SAVEPOINT active_record_1
17750
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.50@baz.org' LIMIT 1
17751
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17752
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.50@baz.org"], ["password_digest", "$2a$04$VCiBWFVQ15hV51FRooozLuiaqq8rhlLZmBb7npjcNeLQBwDTWg76W"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.367444"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.367597"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.367696"], ["created_at", "2015-07-07 04:59:29.374292"], ["updated_at", "2015-07-07 04:59:29.374292"]]
17753
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17754
+  (0.6ms) rollback transaction
17755
+  (0.1ms) begin transaction
17756
+  (0.1ms) SAVEPOINT active_record_1
17757
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.51@baz.org' LIMIT 1
17758
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17759
+ SQL (0.9ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.51@baz.org"], ["password_digest", "$2a$04$YfvxS0tAbulbutxM/vLFpes9iNR39RrptXvJoKalA6EIng1nvgtlK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.379217"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.379070"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.379190"], ["created_at", "2015-07-07 04:59:29.384020"], ["updated_at", "2015-07-07 04:59:29.384020"]]
17760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17761
+  (0.5ms) rollback transaction
17762
+  (0.1ms) begin transaction
17763
+  (0.1ms) SAVEPOINT active_record_1
17764
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.52@baz.org' LIMIT 1
17765
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17766
+ SQL (0.8ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.52@baz.org"], ["password_digest", "$2a$04$RSE5zUaprgAFmOb6/tL5M.qbIl/QU13cTWoEQGwYeJE2C6jRE/phO"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.390614"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.390480"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.390592"], ["created_at", "2015-07-07 04:59:29.398955"], ["updated_at", "2015-07-07 04:59:29.398955"]]
17767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17768
+ SQL (0.7ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:29.404720', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17769
+  (1.4ms) rollback transaction
17770
+  (0.1ms) begin transaction
17771
+  (0.1ms) SAVEPOINT active_record_1
17772
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.53@baz.org' LIMIT 1
17773
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17774
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.53@baz.org"], ["password_digest", "$2a$04$UsoOucrDkWnw.WeATjmegeiPcWmGWoyN19gVA3bGxSsbwR4JcLsJu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.410692"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.410524"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.410660"], ["created_at", "2015-07-07 04:59:29.418785"], ["updated_at", "2015-07-07 04:59:29.418785"]]
17775
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17776
+ SQL (0.9ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:29.422606', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17777
+  (0.9ms) rollback transaction
17778
+  (0.1ms) begin transaction
17779
+  (0.1ms) SAVEPOINT active_record_1
17780
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.54@baz.org' LIMIT 1
17781
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17782
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.54@baz.org"], ["password_digest", "$2a$04$1Eh1/aNRyFeWh47/y1vS..qEtNBddTQfJAhK1bi5JHpNLJrjD2Yn6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.426790"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.426660"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.426766"], ["created_at", "2015-07-07 04:59:29.433601"], ["updated_at", "2015-07-07 04:59:29.433601"]]
17783
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17784
+ SQL (1.2ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:29.436065', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17785
+  (0.8ms) rollback transaction
17786
+  (0.1ms) begin transaction
17787
+  (0.1ms) SAVEPOINT active_record_1
17788
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.55@baz.org' LIMIT 1
17789
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17790
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.55@baz.org"], ["password_digest", "$2a$04$VkSe2WL1s4oqCeDsWwIfAO7B7XgByLLtLjjzugrgkEimdM1JBY8he"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.440595"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.440439"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.440543"], ["created_at", "2015-07-07 04:59:29.448295"], ["updated_at", "2015-07-07 04:59:29.448295"]]
17791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17792
+ SQL (0.4ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:29.450108', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17793
+  (0.7ms) rollback transaction
17794
+  (0.1ms) begin transaction
17795
+  (0.2ms) SAVEPOINT active_record_1
17796
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.56@baz.org' LIMIT 1
17797
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17798
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.56@baz.org"], ["password_digest", "$2a$04$A1LdP0zFiy3bUN/qBXmG2Ol9TpPXoRHWAN0M06mG1NfBjW3wi3X6S"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.454837"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.454711"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.454815"], ["created_at", "2015-07-07 04:59:29.463781"], ["updated_at", "2015-07-07 04:59:29.463781"]]
17799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17800
+ SQL (0.4ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:29.465889', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17801
+  (0.8ms) rollback transaction
17802
+  (0.1ms) begin transaction
17803
+  (0.1ms) SAVEPOINT active_record_1
17804
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.57@baz.org' LIMIT 1
17805
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17806
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.57@baz.org"], ["password_digest", "$2a$04$2E0zY4LU1plJma1T4ROaIu0WGt9QzcW20GJSERjBl8knjX25ZR1Me"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.470125"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.469923"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.470086"], ["created_at", "2015-07-07 04:59:29.479082"], ["updated_at", "2015-07-07 04:59:29.479082"]]
17807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17808
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "29wsxnQ5Mwbpm97rWwoGRjY9fRYHGJB69xzZeLaXEBwr"]]
17809
+  (0.5ms) rollback transaction
17810
+  (0.1ms) begin transaction
17811
+  (0.1ms) SAVEPOINT active_record_1
17812
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.58@baz.org' LIMIT 1
17813
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17814
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.58@baz.org"], ["password_digest", "$2a$04$uH37BoZTz.GfCZqpDA61WOEOsPIJfi8DWrZf/5PVFvOrbSFHU5J3S"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.483970"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.483824"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.483944"], ["created_at", "2015-07-07 04:59:29.490828"], ["updated_at", "2015-07-07 04:59:29.490828"]]
17815
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17816
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "EcCdkz4KYAF6Mz2udmTwbqCaPXz31Jh5M7yFGTxyZx4r"]]
17817
+  (0.5ms) rollback transaction
17818
+  (0.1ms) begin transaction
17819
+  (0.1ms) SAVEPOINT active_record_1
17820
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.59@baz.org' LIMIT 1
17821
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17822
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.59@baz.org"], ["password_digest", "$2a$04$o3QJ./h4M8/WX.oGOui3buCry/Sa3BZdiG/R/OJwnw2dgn5TEwJxa"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.498069"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.497924"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.498042"], ["created_at", "2015-07-07 04:59:29.505875"], ["updated_at", "2015-07-07 04:59:29.505875"]]
17823
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17824
+ Account Load (0.0ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "AfkqqUXDybsobscgoHaBohsgozUsSaRyTq5m7F6sqgzr"]]
17825
+  (0.6ms) rollback transaction
17826
+  (0.1ms) begin transaction
17827
+  (0.1ms) SAVEPOINT active_record_1
17828
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.60@baz.org' LIMIT 1
17829
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17830
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.60@baz.org"], ["password_digest", "$2a$04$3OwONBX/w0gMjc.L4abE9.Msc5p9oNuXIKCsdePo3TUtCwSlhQNFS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.510853"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.510676"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.510788"], ["created_at", "2015-07-07 04:59:29.516169"], ["updated_at", "2015-07-07 04:59:29.516169"]]
17831
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17832
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "mNQjgbe21YLQS8NEqs6jLmMamzR3JsymrdPR3qPKUyAr"]]
17833
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "PoNrHpYVibhtZzVo47nUmK7kGoxyBKYDq4ipTkMbME8r"]]
17834
+  (0.6ms) rollback transaction
17835
+  (0.1ms) begin transaction
17836
+  (0.2ms) SAVEPOINT active_record_1
17837
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.61@baz.org' LIMIT 1
17838
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17839
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.61@baz.org"], ["password_digest", "$2a$04$O9akfzCC2GX1Nye5iFB33enbOExmGH3hd6.a4vIAQziB6DAemnc6a"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.523595"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.523426"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.523574"], ["created_at", "2015-07-07 04:59:29.531013"], ["updated_at", "2015-07-07 04:59:29.531013"]]
17840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17841
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "pazRSJUUo95Q7BXbNEKoqNUyZdfxxxjgAmqpSFza914r"]]
17842
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "zVaYkWNWxwwYzaXuc1QcxLLBcXrtVrxt2MpL8U9xbHzr"]]
17843
+  (0.7ms) rollback transaction
17844
+  (0.1ms) begin transaction
17845
+  (0.2ms) SAVEPOINT active_record_1
17846
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foo.bar.62@baz.org' LIMIT 1
17847
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17848
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foo.bar.62@baz.org"], ["password_digest", "$2a$04$ERCEMnsm65SzQPueTc.nWuhCWAxtMF058HT0NxLExabwzgB.1XJNy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.539801"], ["auth_token", "abc123def456"], ["auth_token_expires_at", "2015-07-08 04:59:29.539545"], ["password_reset_token", "123abc456def"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.539775"], ["created_at", "2015-07-07 04:59:29.548729"], ["updated_at", "2015-07-07 04:59:29.548729"]]
17849
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17850
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "aSi6pwnspDfzVWmYb3sfUGp68ekjRhpgwi9hABY1fcor"]]
17851
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."activation_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["activation_token", "XWLpgAga8WtYLQPdRsqwLAzdLwqjX8ETVg4Gj22quJUr"]]
17852
+  (0.6ms) rollback transaction
17853
+  (0.1ms) begin transaction
17854
+  (0.1ms) SAVEPOINT active_record_1
17855
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17856
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17857
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$iJw3sVwA6KZiwDenAnQe/uTkq3es8EWO01jtv9tG7MAHUX73.XxGK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.556939"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.556813"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.556916"], ["created_at", "2015-07-07 04:59:29.563621"], ["updated_at", "2015-07-07 04:59:29.563621"]]
17858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17859
+  (0.6ms) rollback transaction
17860
+  (0.2ms) begin transaction
17861
+  (0.2ms) SAVEPOINT active_record_1
17862
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17863
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17864
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$mhRAV7Dbcm3VWezYLJ.JDu1W9WEduqTkpY.QzgX9cW0FLMlyYnfu6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.568692"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.568455"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.568637"], ["created_at", "2015-07-07 04:59:29.578312"], ["updated_at", "2015-07-07 04:59:29.578312"]]
17865
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17866
+  (0.6ms) rollback transaction
17867
+  (0.1ms) begin transaction
17868
+  (0.1ms) SAVEPOINT active_record_1
17869
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17870
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17871
+ SQL (1.0ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$6nF7opW2X82hWnFApr38g.FuawKsZf.tgxw4hA4eabL1r6dlZfke6"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.584000"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.583840"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.583964"], ["created_at", "2015-07-07 04:59:29.592354"], ["updated_at", "2015-07-07 04:59:29.592354"]]
17872
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17873
+  (0.1ms) SAVEPOINT active_record_1
17874
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17875
+ SQL (1.0ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:29.600699' WHERE "accounts"."id" = ? [["id", 1]]
17876
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17877
+  (1.8ms) rollback transaction
17878
+  (0.1ms) begin transaction
17879
+  (0.1ms) SAVEPOINT active_record_1
17880
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17881
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17882
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$dCU/1DFEzeyrgQHnmhKgKe/0VvMWbxIjZJFYZWBCvMylRlhGzObjy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.608102"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.607969"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.608078"], ["created_at", "2015-07-07 04:59:29.616657"], ["updated_at", "2015-07-07 04:59:29.616657"]]
17883
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17884
+  (0.1ms) SAVEPOINT active_record_1
17885
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17886
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:29.620161' WHERE "accounts"."id" = ? [["id", 1]]
17887
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17888
+  (1.5ms) rollback transaction
17889
+  (0.1ms) begin transaction
17890
+  (0.1ms) SAVEPOINT active_record_1
17891
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17892
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17893
+ SQL (1.0ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$N4nJAGvyhoq2dfa.QBAtuu02/8mr/zbi/3ZAXN79qVwXsRbIkQq2i"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.625004"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-06-30 04:59:29.624726"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.624947"], ["created_at", "2015-07-07 04:59:29.632945"], ["updated_at", "2015-07-07 04:59:29.632945"]]
17894
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17895
+  (0.3ms) SAVEPOINT active_record_1
17896
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17897
+  (0.5ms) rollback transaction
17898
+  (0.2ms) begin transaction
17899
+  (0.1ms) SAVEPOINT active_record_1
17900
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17901
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17902
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$8gksq5iVnKSEfF6D0X2ofu1ZAgiOOsh/r3Tuc2.1lrBm/2kSPbuCS"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.643300"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-06-30 04:59:29.642814"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.643180"], ["created_at", "2015-07-07 04:59:29.650044"], ["updated_at", "2015-07-07 04:59:29.650044"]]
17903
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17904
+  (0.1ms) SAVEPOINT active_record_1
17905
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17906
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "ss9ZQLushe7yBSqfjQVccHmHiNMdqMBXvvvBzLvxHJor"]]
17907
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "ss9ZQLushe7yBSqfjQVccHmHiNMdqMBXvvvBzLvxHJor"], ["auth_token_expires_at", "2015-07-08 04:59:29.655945"], ["updated_at", "2015-07-07 04:59:29.656392"], ["id", 1]]
17908
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17909
+  (0.8ms) rollback transaction
17910
+  (0.1ms) begin transaction
17911
+  (0.1ms) SAVEPOINT active_record_1
17912
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17913
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17914
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$RkgbPlTNC.GA4QBkdMK0beo0UTzZ./qPtWgl55nvb/vQT35l9UN6S"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.663160"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.662994"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.663129"], ["created_at", "2015-07-07 04:59:29.669145"], ["updated_at", "2015-07-07 04:59:29.669145"]]
17915
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17916
+  (0.1ms) SAVEPOINT active_record_1
17917
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17918
+ SQL (0.4ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:29.673027' WHERE "accounts"."id" = ? [["id", 1]]
17919
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17920
+  (0.9ms) rollback transaction
17921
+  (0.1ms) begin transaction
17922
+  (0.1ms) SAVEPOINT active_record_1
17923
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17924
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17925
+ SQL (0.7ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$3n4jDwZ0AFdhfMy5bSox3eIo5mZNv6lsHIJqKP.2u9NpPqE3fngnK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.677792"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.677616"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.677756"], ["created_at", "2015-07-07 04:59:29.685308"], ["updated_at", "2015-07-07 04:59:29.685308"]]
17926
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17927
+  (0.1ms) SAVEPOINT active_record_1
17928
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17929
+ SQL (0.8ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:29.690953' WHERE "accounts"."id" = ? [["id", 1]]
17930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17931
+  (1.2ms) rollback transaction
17932
+  (0.1ms) begin transaction
17933
+  (0.1ms) SAVEPOINT active_record_1
17934
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17935
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17936
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$Gw/GZhEEes5w/6GeGX7D6OsDZgz9Y2F6iZh4WqBU8T9khxUS6Ez22"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.696193"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.696005"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.696156"], ["created_at", "2015-07-07 04:59:29.706835"], ["updated_at", "2015-07-07 04:59:29.706835"]]
17937
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17938
+  (0.1ms) SAVEPOINT active_record_1
17939
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17940
+ SQL (0.5ms) UPDATE "accounts" SET "auth_token_expires_at" = '2015-07-08 04:59:29.710556' WHERE "accounts"."id" = ? [["id", 1]]
17941
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17942
+  (0.9ms) rollback transaction
17943
+  (0.1ms) begin transaction
17944
+  (0.1ms) SAVEPOINT active_record_1
17945
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17946
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17947
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$ZJ99W9h.SKrzU3GZnz9YduUAM.8zV.N.LAgKQpUIWNOP8CIzWg3cy"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.714970"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.714829"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.714944"], ["created_at", "2015-07-07 04:59:29.721506"], ["updated_at", "2015-07-07 04:59:29.721506"]]
17948
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17949
+  (0.1ms) SAVEPOINT active_record_1
17950
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17951
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17952
+  (0.5ms) rollback transaction
17953
+  (0.2ms) begin transaction
17954
+  (0.1ms) SAVEPOINT active_record_1
17955
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17956
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17957
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$YkdoGxmKLQPeo2kb8OB/iO1ErXUV6qqebuB8q1kJZjE3rP6edBonu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.728229"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.728100"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.728207"], ["created_at", "2015-07-07 04:59:29.734008"], ["updated_at", "2015-07-07 04:59:29.734008"]]
17958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17959
+  (0.1ms) SAVEPOINT active_record_1
17960
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17961
+ SQL (0.3ms) UPDATE "accounts" SET "activated_at" = '2015-07-07 04:59:29.738735', "activation_token_expires_at" = NULL WHERE "accounts"."id" = ? [["id", 1]]
17962
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17963
+  (0.8ms) rollback transaction
17964
+  (0.1ms) begin transaction
17965
+  (0.1ms) SAVEPOINT active_record_1
17966
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17967
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17968
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$pTaiYSGG9YDCq8NgJnK.8udNd6mNiCtrPCZJKD9.hSAP.bx54ez2S"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-06 04:59:29.742091"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.741860"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.742018"], ["created_at", "2015-07-07 04:59:29.752184"], ["updated_at", "2015-07-07 04:59:29.752184"]]
17969
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17970
+  (0.0ms) SAVEPOINT active_record_1
17971
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17973
+  (0.6ms) rollback transaction
17974
+  (0.1ms) begin transaction
17975
+  (0.1ms) SAVEPOINT active_record_1
17976
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17977
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17978
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$9LnK6yYhagyINLL3N574a..8y7RD6/HKxgbZlha31mqnuSTqS0j4K"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.760208"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.760072"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.760186"], ["created_at", "2015-07-07 04:59:29.766620"], ["updated_at", "2015-07-07 04:59:29.766620"]]
17979
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17980
+  (0.1ms) SAVEPOINT active_record_1
17981
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
17982
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17983
+  (0.5ms) rollback transaction
17984
+  (0.1ms) begin transaction
17985
+  (0.2ms) SAVEPOINT active_record_1
17986
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17987
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17988
+ SQL (0.8ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$N89xNb1Y9w2iXRFGWoQxh.NPfhqTEQlUI9KJ.UjK4msFTuvfJXiZK"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.773093"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.772965"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.773067"], ["created_at", "2015-07-07 04:59:29.781668"], ["updated_at", "2015-07-07 04:59:29.781668"]]
17989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17990
+  (0.1ms) SAVEPOINT active_record_1
17991
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'notmyemail@gmail.com') LIMIT 1
17992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17993
+  (0.6ms) rollback transaction
17994
+  (0.1ms) begin transaction
17995
+  (0.3ms) SAVEPOINT active_record_1
17996
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
17997
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
17998
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$fbLbxF.FZa7EogduSG71Puisf0HvMZJdXBkse7tegDFKG99Ob5Ss2"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.789716"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.789565"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.789673"], ["created_at", "2015-07-07 04:59:29.799198"], ["updated_at", "2015-07-07 04:59:29.799198"]]
17999
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18000
+  (0.1ms) SAVEPOINT active_record_1
18001
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
18002
+  (0.2ms) RELEASE SAVEPOINT active_record_1
18003
+  (0.6ms) rollback transaction
18004
+  (0.1ms) begin transaction
18005
+  (0.1ms) SAVEPOINT active_record_1
18006
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
18007
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
18008
+ SQL (0.4ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$J0iZXTByzx7/RfZFcdPxducbD8BnU.EFcz8Itbi56HoivAN4FKCCq"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.809754"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.809613"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.809728"], ["created_at", "2015-07-07 04:59:29.815531"], ["updated_at", "2015-07-07 04:59:29.815531"]]
18009
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18010
+  (0.2ms) SAVEPOINT active_record_1
18011
+ Account Load (0.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'bad_actor@gmail.com') LIMIT 1
18012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18013
+  (0.6ms) rollback transaction
18014
+  (0.1ms) begin transaction
18015
+  (0.1ms) SAVEPOINT active_record_1
18016
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
18017
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
18018
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$SzgAz9m98VR68ZjTzbmdee.e7haNhw51IGMxWXkkCOHRWgLiVp1dW"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.821748"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.821618"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.821725"], ["created_at", "2015-07-07 04:59:29.831728"], ["updated_at", "2015-07-07 04:59:29.831728"]]
18019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18020
+  (0.1ms) SAVEPOINT active_record_1
18021
+ Account Load (1.6ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
18022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18023
+  (0.7ms) rollback transaction
18024
+  (0.1ms) begin transaction
18025
+  (0.1ms) SAVEPOINT active_record_1
18026
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
18027
+ Account Exists (0.1ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
18028
+ SQL (0.3ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$1PawE6q.hiT7uUP8mu5mB.SiKfe9DIR4EXMM.ADQoNwBKv7lG85eu"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.839684"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.839546"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.839657"], ["created_at", "2015-07-07 04:59:29.848225"], ["updated_at", "2015-07-07 04:59:29.848225"]]
18029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18030
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
18031
+ Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."auth_token" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["auth_token", "RtbWqtmFAfyfSDRe7FymVHaeZJ6rEmp2R6jFQJfvCQzr"]]
18032
+  (0.1ms) SAVEPOINT active_record_1
18033
+ SQL (0.7ms) UPDATE "accounts" SET "auth_token" = ?, "auth_token_expires_at" = ?, "updated_at" = ? WHERE "accounts"."id" = ? [["auth_token", "RtbWqtmFAfyfSDRe7FymVHaeZJ6rEmp2R6jFQJfvCQzr"], ["auth_token_expires_at", "2015-07-08 04:59:29.856271"], ["updated_at", "2015-07-07 04:59:29.856993"], ["id", 1]]
18034
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18035
+  (0.8ms) rollback transaction
18036
+  (0.2ms) begin transaction
18037
+  (0.1ms) SAVEPOINT active_record_1
18038
+ Account Exists (0.4ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
18039
+ Account Exists (0.2ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
18040
+ SQL (0.6ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$8oaBocFcRmUVm/wf99bN7OgFsbhp3W6s8BLLPx783UmHLLNOhhEw."], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.862723"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.862513"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.862694"], ["created_at", "2015-07-07 04:59:29.869831"], ["updated_at", "2015-07-07 04:59:29.869831"]]
18041
+  (0.2ms) RELEASE SAVEPOINT active_record_1
18042
+ Account Load (1.3ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com') LIMIT 1
18043
+  (0.8ms) rollback transaction
18044
+  (0.1ms) begin transaction
18045
+  (0.2ms) SAVEPOINT active_record_1
18046
+ Account Exists (0.5ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."email" = 'foobar@baz.com' LIMIT 1
18047
+ Account Exists (0.3ms) SELECT 1 AS one FROM "accounts" WHERE "accounts"."activation_token" = 'activateme' LIMIT 1
18048
+ SQL (0.5ms) INSERT INTO "accounts" ("email", "password_digest", "activation_token", "activation_token_expires_at", "auth_token", "auth_token_expires_at", "password_reset_token", "password_reset_token_expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "foobar@baz.com"], ["password_digest", "$2a$04$JMs.XCT.Lwx8fJXrU0uHJu8OtkkNUFB8oN6RTCVAUI.Yv/wQZDx4i"], ["activation_token", "activateme"], ["activation_token_expires_at", "2015-07-07 05:59:29.880535"], ["auth_token", "deadbeef"], ["auth_token_expires_at", "2015-07-08 04:59:29.880373"], ["password_reset_token", "resetme"], ["password_reset_token_expires_at", "2015-07-07 05:59:29.880508"], ["created_at", "2015-07-07 04:59:29.889045"], ["updated_at", "2015-07-07 04:59:29.889045"]]
18049
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18050
+ Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE (lower(email) = 'foobar@baz.com_evil') LIMIT 1
18051
+  (0.6ms) rollback transaction
18052
+  (9.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
18053
+  (0.1ms) select sqlite_version(*)
18054
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18055
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18056
+ Migrating to CreateAccounts (20150127045508)
18057
+  (0.1ms) begin transaction
18058
+  (0.6ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "password_digest" varchar, "auth_token" varchar, "auth_token_expires_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
18059
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150127045508"]]
18060
+  (2.2ms) commit transaction
18061
+ Migrating to AddPasswordResetTokens (20150210215727)
18062
+  (0.1ms) begin transaction
18063
+  (0.9ms) ALTER TABLE "accounts" ADD "password_reset_token" varchar
18064
+  (0.2ms) ALTER TABLE "accounts" ADD "password_reset_token_expires_at" datetime
18065
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150210215727"]]
18066
+  (1.0ms) commit transaction
18067
+ Migrating to AddActivationTokenToAccount (20150211185152)
18068
+  (0.1ms) begin transaction
18069
+  (0.6ms) ALTER TABLE "accounts" ADD "activated_at" datetime
18070
+  (0.2ms) ALTER TABLE "accounts" ADD "activation_token" varchar
18071
+  (0.2ms) ALTER TABLE "accounts" ADD "activation_token_expires_at" datetime
18072
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150211185152"]]
18073
+  (1.0ms) commit transaction
18074
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"