openstax_api 3.1.2 → 3.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14f9dbb44e4d349e640489246beffd88c6e4dd94
4
- data.tar.gz: d3fa1af6900b346b41fb2e836f769a336cbfa6d0
3
+ metadata.gz: f06eaa9e8710356fb21884e1a7d22eb012029027
4
+ data.tar.gz: 31ff10ffb96b5cd589bfff5f0d85e7dcdf498088
5
5
  SHA512:
6
- metadata.gz: 4335ffcb2189022b1c7bfe75b58e794a002984c490023970c9d3e664b8d0097e21a0f6072ce4f9678ca131eb6dbb77d2b3f80dc12a376a760fd7e6c27eedb8a3
7
- data.tar.gz: 88985fd1c2f4856d357af0bf73c43e16f7d1aaf90db4de9692421976a1f06b493b8d711a9460a863d09e6c0ee6b2f01db6397e4477b0228d8dd584676ad6f2e4
6
+ metadata.gz: deea92f5fd6a76aeb9e94dac0baeb00c444fb040f90fdbf047b7df7e906c49af73fb944dddac5c702db02f243aecba7c59894fdfb3a44448c0ebc2a0a083d054
7
+ data.tar.gz: 9838f711a2ad80141c7e7eac2b9ae063876a5945330ed22d7435b0b42306adb5f9a268193f2162fad0bf0b1a2729b83f934766894e8da7b228d5a326fb83af8c
@@ -9,16 +9,10 @@ module OpenStax
9
9
 
10
10
  module Roar
11
11
 
12
- def standard_search(routine, relation, represent_with, options={})
12
+ def standard_search(model, routine, represent_with, options={})
13
13
  user = current_api_user
14
- model_klass = relation.base_class
15
- OSU::AccessPolicy.require_action_allowed!(:search, user, model_klass)
16
- options = options.merge({
17
- search_routine: routine,
18
- search_relation: relation,
19
- params: params
20
- })
21
- result = OpenStax::Utilities::KeywordSearchHandler.call(options)
14
+ OSU::AccessPolicy.require_action_allowed!(:search, user, model)
15
+ result = routine.call(params)
22
16
  return render_api_errors(result.errors) if result.errors.any?
23
17
  outputs = result.outputs
24
18
  outputs[:items].each do |item|
@@ -80,7 +74,8 @@ module OpenStax
80
74
  # Must be able to read each record
81
75
  OSU::AccessPolicy.require_action_allowed!(:read, current_api_user, item)
82
76
  end
83
- respond_with(Lev::Outputs.new({items: relation}), {represent_with: represent_with})
77
+ respond_with(Lev::Outputs.new(items: relation),
78
+ represent_with: represent_with)
84
79
  end
85
80
 
86
81
  def standard_sort(*args)
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Api
3
- VERSION = "3.1.2"
3
+ VERSION = "3.2.1"
4
4
  end
5
5
  end
@@ -1,21 +1,42 @@
1
1
  # Dummy routine for testing the abstract search representer
2
2
 
3
- class SearchUsers < OpenStax::Utilities::AbstractKeywordSearchRoutine
4
- self.search_proc = lambda { |with|
5
- with.keyword :username do |names|
6
- snames = to_string_array(names, append_wildcard: true)
7
- @items = @items.where{username.like_any snames}
8
- end
3
+ class SearchUsers
9
4
 
10
- with.keyword :first_name do |names|
11
- snames = to_string_array(names, append_wildcard: true)
12
- @items = @items.where{name.like_any snames}
13
- end
5
+ lev_routine
14
6
 
15
- with.keyword :last_name do |names|
16
- snames = to_string_array(names, append_wildcard: true).collect{|name| "% #{name}"}
17
- @items = @items.where{name.like_any snames}
18
- end
7
+ uses_routine OSU::SearchAndOrganizeRelation,
8
+ as: :search,
9
+ translations: { outputs: { type: :verbatim } }
10
+
11
+ SORTABLE_FIELDS = {
12
+ 'name' => :name,
13
+ 'created_at' => :created_at
19
14
  }
20
- self.sortable_fields_map = {'name' => :name, 'created_at' => :created_at, 'id' => :id}
15
+
16
+ protected
17
+
18
+ def exec(params = {})
19
+ run(:search, relation: User.unscoped,
20
+ sortable_fields: SORTABLE_FIELDS,
21
+ params: params) do |with|
22
+ with.keyword :username do |names|
23
+ snames = to_string_array(names, append_wildcard: true)
24
+ next @items = @items.none if snames.empty?
25
+ @items = @items.where{username.like_any snames}
26
+ end
27
+
28
+ with.keyword :first_name do |names|
29
+ snames = to_string_array(names, append_wildcard: true)
30
+ next @items = @items.none if snames.empty?
31
+ @items = @items.where{name.like_any snames}
32
+ end
33
+
34
+ with.keyword :last_name do |names|
35
+ snames = to_string_array(names, append_wildcard: true)
36
+ .collect{|name| "% #{name}"}
37
+ next @items = @items.none if snames.empty?
38
+ @items = @items.where{name.like_any snames}
39
+ end
40
+ end
41
+ end
21
42
  end
Binary file
@@ -24859,3 +24859,2507 @@ SQLite3::ConstraintException: NOT NULL constraint failed: dummy_users.username:
24859
24859
   (0.0ms) commit transaction
24860
24860
   (0.1ms) SELECT COUNT(*) FROM "users"
24861
24861
  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 19980
24862
+  (0.9ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
24863
+  (0.1ms) select sqlite_version(*)
24864
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
24865
+  (0.7ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
24866
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
24867
+  (0.1ms) SELECT sql
24868
+ FROM sqlite_master
24869
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24870
+ UNION ALL
24871
+ SELECT sql
24872
+ FROM sqlite_temp_master
24873
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24874
+
24875
+  (0.7ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
24876
+  (0.1ms) SELECT sql
24877
+ FROM sqlite_master
24878
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
24879
+ UNION ALL
24880
+ SELECT sql
24881
+ FROM sqlite_temp_master
24882
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
24883
+
24884
+  (0.1ms)  SELECT sql
24885
+ FROM sqlite_master
24886
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24887
+ UNION ALL
24888
+ SELECT sql
24889
+ FROM sqlite_temp_master
24890
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24891
+ 
24892
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
24893
+  (0.7ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
24894
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
24895
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
24896
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
24897
+  (0.1ms)  SELECT sql
24898
+ FROM sqlite_master
24899
+ WHERE name='index_users_on_email' AND type='index'
24900
+ UNION ALL
24901
+ SELECT sql
24902
+ FROM sqlite_temp_master
24903
+ WHERE name='index_users_on_email' AND type='index'
24904
+ 
24905
+  (0.7ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
24906
+  (0.1ms)  SELECT sql
24907
+ FROM sqlite_master
24908
+ WHERE name='index_users_on_name' AND type='index'
24909
+ UNION ALL
24910
+ SELECT sql
24911
+ FROM sqlite_temp_master
24912
+ WHERE name='index_users_on_name' AND type='index'
24913
+ 
24914
+  (0.1ms) SELECT sql
24915
+ FROM sqlite_master
24916
+ WHERE name='index_users_on_email' AND type='index'
24917
+ UNION ALL
24918
+ SELECT sql
24919
+ FROM sqlite_temp_master
24920
+ WHERE name='index_users_on_email' AND type='index'
24921
+
24922
+  (0.8ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
24923
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24924
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24925
+  (0.1ms) SELECT version FROM "schema_migrations"
24926
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
24927
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
24928
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24929
+  (0.1ms) begin transaction
24930
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.424554"], ["email", "kristofer_vandervort@boganupton.biz"], ["name", "Mae Ledner"], ["password_hash", "cabf8063b8ea02f7cb2d5579724600d3"], ["updated_at", "2014-10-16 18:13:02.424554"], ["username", "3a50ebdecf61cc5e61a8a13a5f5df2df"]]
24931
+  (0.6ms) commit transaction
24932
+  (0.0ms) begin transaction
24933
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.429268"], ["email", "lea.donnelly@watsica.info"], ["name", "Alia Reinger"], ["password_hash", "259c7009c672bff0c2ee7c1b07598947"], ["updated_at", "2014-10-16 18:13:02.429268"], ["username", "3934dc0228e7283503d17600354021e6"]]
24934
+  (0.6ms) commit transaction
24935
+  (0.1ms) begin transaction
24936
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.433664"], ["email", "citlalli@emmerich.biz"], ["name", "Dr. Celine Price"], ["password_hash", "f30870d2b41171126ee078bd4c7d3d78"], ["updated_at", "2014-10-16 18:13:02.433664"], ["username", "72a250ca61ea3c0dc0539f63955ec47f"]]
24937
+  (0.6ms) commit transaction
24938
+  (0.0ms) begin transaction
24939
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.435908"], ["email", "christelle_keler@strosin.com"], ["name", "Baylee Steuber"], ["password_hash", "abc8f49c266ef5204809d91ce5fafb12"], ["updated_at", "2014-10-16 18:13:02.435908"], ["username", "80872cf02dc8e53beb632822a4c18ece"]]
24940
+  (0.6ms) commit transaction
24941
+  (0.0ms) begin transaction
24942
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.438509"], ["email", "quinten@kuhic.org"], ["name", "Jovany Hahn"], ["password_hash", "3334047e2719704ee63665e5e8afcfbf"], ["updated_at", "2014-10-16 18:13:02.438509"], ["username", "e2b22e2a9177e24391ceeb607320619b"]]
24943
+  (0.6ms) commit transaction
24944
+  (0.0ms) begin transaction
24945
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.440365"], ["email", "dena.dach@pouros.info"], ["name", "Miss Beverly Treutel"], ["password_hash", "dfa97e81f16176a943c5a16b7a3a8e50"], ["updated_at", "2014-10-16 18:13:02.440365"], ["username", "3cdf5eb62fb6c1b247833df7fbfa5c73"]]
24946
+  (0.6ms) commit transaction
24947
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
24948
+  (0.0ms) begin transaction
24949
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.459285"], ["email", "lucienne@conngorczany.com"], ["name", "Arvid O'Connell"], ["password_hash", "51a90b46bab9793909b2da06471f4ac0"], ["updated_at", "2014-10-16 18:13:02.459285"], ["username", "1bd1fa2dbeabc96e7effef30b2632b7e"]]
24950
+  (0.7ms) commit transaction
24951
+  (0.0ms) begin transaction
24952
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.461346"], ["email", "jude.dickens@schuppesawayn.info"], ["name", "Mrs. Chloe Nicolas"], ["password_hash", "5fbf09ad8162bc72a38b71500e49af26"], ["updated_at", "2014-10-16 18:13:02.461346"], ["username", "44699b90366b369972761a906a65ff88"]]
24953
+  (0.6ms) commit transaction
24954
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
24955
+  (0.0ms) begin transaction
24956
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.464593"], ["email", "hattie@ratke.biz"], ["name", "Miss Myrl Goyette"], ["password_hash", "f5e163f719d8c93ba85446df1273ec23"], ["updated_at", "2014-10-16 18:13:02.464593"], ["username", "8215c7dfe322ed7fd342c5334a20a2e7"]]
24957
+  (0.7ms) commit transaction
24958
+  (0.1ms) begin transaction
24959
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.466676"], ["email", "elta_abshire@hillsjacobi.name"], ["name", "Mitchell Rogahn"], ["password_hash", "d5afa1906edccfcdf3e759949688f6a6"], ["updated_at", "2014-10-16 18:13:02.466676"], ["username", "6b8cd2b8654cf1bf4ded9dd2f30932a8"]]
24960
+  (0.7ms) commit transaction
24961
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 ORDER BY "users"."id" ASC LIMIT 1
24962
+  (0.0ms) begin transaction
24963
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.485365"], ["email", "branson@bartell.biz"], ["name", "Abner Bergstrom"], ["password_hash", "a54d674cb4a7aaa2f032d226a6d434de"], ["updated_at", "2014-10-16 18:13:02.485365"], ["username", "c4e0aa2298aef8cd2e0e78552f9bea1d"]]
24964
+  (0.6ms) commit transaction
24965
+  (0.0ms) begin transaction
24966
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.487776"], ["email", "velda@kerluke.info"], ["name", "Jackson Rosenbaum"], ["password_hash", "06a4e46097fc25cc9172a9c48c535609"], ["updated_at", "2014-10-16 18:13:02.487776"], ["username", "0c94de5b23114702531356ee0ffc1da4"]]
24967
+  (0.6ms) commit transaction
24968
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 12 ORDER BY "users"."id" ASC LIMIT 1
24969
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
24970
+  (0.0ms) begin transaction
24971
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.491490"], ["email", "hildegard_greenholt@morar.com"], ["name", "Estevan Franecki"], ["password_hash", "80c19b7ed11e7a45bdb72014645431e1"], ["updated_at", "2014-10-16 18:13:02.491490"], ["username", "f523f07047a9b61b0130ec0b4f7622b8"]]
24972
+  (0.6ms) commit transaction
24973
+  (0.0ms) begin transaction
24974
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.493357"], ["email", "norene_heel@tromp.net"], ["name", "Candelario Kertzmann IV"], ["password_hash", "39172502e247d2c6da7eea75ebb7f0d1"], ["updated_at", "2014-10-16 18:13:02.493357"], ["username", "87ac66411578b22ce04b150de33e5b8b"]]
24975
+  (0.6ms) commit transaction
24976
+  (0.0ms) begin transaction
24977
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.495153"], ["email", "rowena@beier.info"], ["name", "Miss Miller Beahan"], ["password_hash", "58664d8cce7da428687ffed183186c3b"], ["updated_at", "2014-10-16 18:13:02.495153"], ["username", "c629a7bfe7ce537bf8b67e4e098ea3c9"]]
24978
+  (0.6ms) commit transaction
24979
+  (0.0ms) begin transaction
24980
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.496866"], ["email", "raymond.hayes@hackett.info"], ["name", "Halle Gulgowski"], ["password_hash", "fc6adf20e1d1e857dd4aa1eb7c8c5ae4"], ["updated_at", "2014-10-16 18:13:02.496866"], ["username", "76d31b16cb74ddeb25cf7243130f75bf"]]
24981
+  (0.6ms) commit transaction
24982
+  (0.0ms) begin transaction
24983
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.498584"], ["email", "shayna@joneshaag.biz"], ["name", "Pamela Medhurst"], ["password_hash", "e7da013eda593f89433a83f6ec551213"], ["updated_at", "2014-10-16 18:13:02.498584"], ["username", "635b38b19a05dd4717cc90b34f2d060a"]]
24984
+  (0.6ms) commit transaction
24985
+  (0.0ms) begin transaction
24986
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.500351"], ["email", "zander@damore.org"], ["name", "Miss Hal Ferry"], ["password_hash", "b095f0bac3a063dfbbb48421ebd9c086"], ["updated_at", "2014-10-16 18:13:02.500351"], ["username", "7d1a3f2e1729f85524d19075ce43ba0c"]]
24987
+  (0.6ms) commit transaction
24988
+  (0.0ms) begin transaction
24989
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.502030"], ["email", "spencer@wilderman.com"], ["name", "Jayson Cole"], ["password_hash", "425852c6373d0c40253f652770a26c80"], ["updated_at", "2014-10-16 18:13:02.502030"], ["username", "98e9f53895c7ef36a80827dd44dfc799"]]
24990
+  (0.6ms) commit transaction
24991
+  (0.1ms) begin transaction
24992
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.504073"], ["email", "wallace@kiehnsipes.biz"], ["name", "Shane Rice"], ["password_hash", "fbdcd27b88db9ed2af98dc814e712925"], ["updated_at", "2014-10-16 18:13:02.504073"], ["username", "be2a6cc69944ff2b41a9b3b77c408147"]]
24993
+  (0.6ms) commit transaction
24994
+  (0.1ms) begin transaction
24995
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.506633"], ["email", "tyrel@wehner.org"], ["name", "Shanelle Koss"], ["password_hash", "2ef66eb587dad8996bd9b806c2dd9881"], ["updated_at", "2014-10-16 18:13:02.506633"], ["username", "b075aa44cbcf535b9a8679bbb97c5b89"]]
24996
+  (0.6ms) commit transaction
24997
+  (0.0ms) begin transaction
24998
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.509054"], ["email", "tianna.goodwin@conroy.name"], ["name", "Mack Gottlieb"], ["password_hash", "29258e6eed4a71d42353155b506ebad9"], ["updated_at", "2014-10-16 18:13:02.509054"], ["username", "2f0f1684ed46ee4928fba89509d7c10f"]]
24999
+  (0.6ms) commit transaction
25000
+  (0.0ms) begin transaction
25001
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.510819"], ["email", "norma_parker@crist.biz"], ["name", "Kaleigh Deckow"], ["password_hash", "850c7139028d6e571dc4181473d39688"], ["updated_at", "2014-10-16 18:13:02.510819"], ["username", "df3159bc7f2d63e993bf1afbadeab268"]]
25002
+  (0.6ms) commit transaction
25003
+  (0.0ms) begin transaction
25004
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.512543"], ["email", "ilene.jacobson@steuber.biz"], ["name", "Abel Lesch"], ["password_hash", "74e5a67dbb1d168feeb1287f0bdc2a19"], ["updated_at", "2014-10-16 18:13:02.512543"], ["username", "a49c4d2dabc7162a4f78ae736239e9cc"]]
25005
+  (0.6ms) commit transaction
25006
+  (0.0ms) begin transaction
25007
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.514241"], ["email", "tierra.skiles@halvorson.com"], ["name", "Guy Carroll"], ["password_hash", "f6c8f318f59c0704893b921080cd7696"], ["updated_at", "2014-10-16 18:13:02.514241"], ["username", "f41297cfaa2ce760b28d3a2e6d545067"]]
25008
+  (0.7ms) commit transaction
25009
+  (0.0ms) begin transaction
25010
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.516021"], ["email", "beaulah.ko@yoststehr.org"], ["name", "Jasmin Hoeger"], ["password_hash", "bea374700bcdafadc886d831158be749"], ["updated_at", "2014-10-16 18:13:02.516021"], ["username", "5ddc26e1bd6653f703fe0b64ce99fc94"]]
25011
+  (0.6ms) commit transaction
25012
+  (0.0ms) begin transaction
25013
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.517734"], ["email", "dejah@mitchellcole.name"], ["name", "Lavina Schmidt"], ["password_hash", "7d401e79d4f876a98f402af733fdf8f6"], ["updated_at", "2014-10-16 18:13:02.517734"], ["username", "7c473d9e78d6a7a787748ac7f9aa28a0"]]
25014
+  (0.6ms) commit transaction
25015
+  (0.0ms) begin transaction
25016
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.519503"], ["email", "ashton.thompson@bins.info"], ["name", "Beulah Hegmann IV"], ["password_hash", "7fe58ea28789959057a43779750fcbb5"], ["updated_at", "2014-10-16 18:13:02.519503"], ["username", "27a38be06f56c8b3b4136414f56e89d1"]]
25017
+  (0.6ms) commit transaction
25018
+  (0.0ms) begin transaction
25019
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.521198"], ["email", "anabelle@lowe.net"], ["name", "Ellsworth Sanford"], ["password_hash", "2571379e739b8ebe2c72c2f6ac92ff83"], ["updated_at", "2014-10-16 18:13:02.521198"], ["username", "356f8836e603c4295eb5520c90326d5f"]]
25020
+  (0.6ms) commit transaction
25021
+  (0.0ms) begin transaction
25022
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.522946"], ["email", "holden@bergstrom.info"], ["name", "Aileen Watsica"], ["password_hash", "8c47e7afbbdba48622cdd44d5bad87f7"], ["updated_at", "2014-10-16 18:13:02.522946"], ["username", "fdbb6a47a9463a0844f30d73eebdd52b"]]
25023
+  (0.6ms) commit transaction
25024
+  (0.0ms) begin transaction
25025
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.524641"], ["email", "aliya@blanda.net"], ["name", "Evans Yundt Jr."], ["password_hash", "07568412e6a27d6c414616a546e13e2f"], ["updated_at", "2014-10-16 18:13:02.524641"], ["username", "ca4a60ba47bc691638382283c6382b5e"]]
25026
+  (0.6ms) commit transaction
25027
+  (0.0ms) begin transaction
25028
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.526328"], ["email", "maritza@veum.biz"], ["name", "Shea Hartmann"], ["password_hash", "f55a78cb4f1eef318a8834fe6e0812b6"], ["updated_at", "2014-10-16 18:13:02.526328"], ["username", "e41d4d45b8f410b2693935d207cb19fa"]]
25029
+  (0.7ms) commit transaction
25030
+  (0.0ms) begin transaction
25031
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.528093"], ["email", "roscoe_dickens@hegmannlesch.info"], ["name", "Shyanne White"], ["password_hash", "73bd954ebfb3bd7b795b57c80d2317a5"], ["updated_at", "2014-10-16 18:13:02.528093"], ["username", "514db7fa4eacfda05e5061441a9b7dc1"]]
25032
+  (0.7ms) commit transaction
25033
+  (0.0ms) begin transaction
25034
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.529833"], ["email", "doug@hermistonkertzmann.info"], ["name", "Hal Baumbach"], ["password_hash", "b25932fb7e142ea3c57c3843dc9bac95"], ["updated_at", "2014-10-16 18:13:02.529833"], ["username", "88f6b870221190d27e7a783107414f42"]]
25035
+  (0.6ms) commit transaction
25036
+  (0.0ms) begin transaction
25037
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.531523"], ["email", "makenna@wehner.net"], ["name", "Hattie Keebler"], ["password_hash", "a8356b7c4b190ee9e27103cc1d39cd7c"], ["updated_at", "2014-10-16 18:13:02.531523"], ["username", "ba42000f6c8d1ff10b2f4fc15beada2c"]]
25038
+  (0.6ms) commit transaction
25039
+  (0.0ms) begin transaction
25040
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.533286"], ["email", "shania@batz.name"], ["name", "Dereck Torphy"], ["password_hash", "f6ca74ec1c6dc9f1d99f43f1c61d6f53"], ["updated_at", "2014-10-16 18:13:02.533286"], ["username", "f034fb6ab61da05bfd7c73a9c67929e1"]]
25041
+  (0.7ms) commit transaction
25042
+  (0.0ms) begin transaction
25043
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.535025"], ["email", "keven.prosacco@skiles.com"], ["name", "Dr. Precious Jacobson"], ["password_hash", "5566de0dcab872f30e0fa373f27db4ea"], ["updated_at", "2014-10-16 18:13:02.535025"], ["username", "b015f72334175970c860fc7ed975273f"]]
25044
+  (0.6ms) commit transaction
25045
+  (0.0ms) begin transaction
25046
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.536702"], ["email", "paul@gottlieb.biz"], ["name", "Brett Block"], ["password_hash", "ffe71ff0d1f5f16719ec3492b46760ab"], ["updated_at", "2014-10-16 18:13:02.536702"], ["username", "c01b73e8b796e7c309cc1ca35517a606"]]
25047
+  (0.6ms) commit transaction
25048
+  (0.0ms) begin transaction
25049
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.538518"], ["email", "marcel@gibson.org"], ["name", "Jayda Strosin"], ["password_hash", "1c2582278879e01bbc4483f40c4c7635"], ["updated_at", "2014-10-16 18:13:02.538518"], ["username", "f1c0b339cfc1e2d156d21454ccaf971a"]]
25050
+  (0.5ms) commit transaction
25051
+  (0.0ms) begin transaction
25052
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.540157"], ["email", "gregorio_altenwerth@krajcik.org"], ["name", "Harmony Stamm Sr."], ["password_hash", "f78ea154de64409be62d1c2ead659d00"], ["updated_at", "2014-10-16 18:13:02.540157"], ["username", "e2bab05663e90bfa3023e585e72328ad"]]
25053
+  (0.6ms) commit transaction
25054
+  (0.0ms) begin transaction
25055
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.541842"], ["email", "haley.schaefer@baumbach.com"], ["name", "Karley Hoeger"], ["password_hash", "00aa16d9bc37ee3ee70f3189bd8fc630"], ["updated_at", "2014-10-16 18:13:02.541842"], ["username", "3b3ccce4362c32237343acadeb25f9cf"]]
25056
+  (0.5ms) commit transaction
25057
+  (0.0ms) begin transaction
25058
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.543495"], ["email", "alana@wisoky.com"], ["name", "Tia Veum"], ["password_hash", "f967cc7084b8edcabd9c5a47b5394093"], ["updated_at", "2014-10-16 18:13:02.543495"], ["username", "7e550b567fbb2c0925c11b0e34fc4c8d"]]
25059
+  (0.5ms) commit transaction
25060
+  (0.0ms) begin transaction
25061
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.545229"], ["email", "deion_medhurst@carroll.com"], ["name", "Chaya Hirthe DVM"], ["password_hash", "3947c414884beca7b30a1ce6de993ff1"], ["updated_at", "2014-10-16 18:13:02.545229"], ["username", "e7f5be07cc2ecd1db5ce8b204cadeb59"]]
25062
+  (0.5ms) commit transaction
25063
+  (0.0ms) begin transaction
25064
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.546944"], ["email", "lisette@collierbartell.info"], ["name", "Mr. Zakary Jacobs"], ["password_hash", "247094a78b7751bea899fad43532157d"], ["updated_at", "2014-10-16 18:13:02.546944"], ["username", "d84816c0e113a9c71584e5e8c4b27833"]]
25065
+  (0.6ms) commit transaction
25066
+  (0.0ms) begin transaction
25067
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.548732"], ["email", "wilhelm@mayer.biz"], ["name", "Ms. Laverne Hintz"], ["password_hash", "3ce4c760915e01ed591e4f84aefc2c94"], ["updated_at", "2014-10-16 18:13:02.548732"], ["username", "a6045aa8c43a0eddb4dd6b26ccbb8746"]]
25068
+  (0.5ms) commit transaction
25069
+  (0.0ms) begin transaction
25070
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.550419"], ["email", "coleman@keebler.com"], ["name", "Salma Lang"], ["password_hash", "a8814788238ba0b68ebc81a56d60322b"], ["updated_at", "2014-10-16 18:13:02.550419"], ["username", "48c23ae01ec00e6202a30fc009e539e1"]]
25071
+  (0.5ms) commit transaction
25072
+  (0.0ms) begin transaction
25073
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.552309"], ["email", "haley_mills@bahringer.info"], ["name", "Allison Schowalter"], ["password_hash", "412d46ba043e97c1ca0d6eec3c5f2130"], ["updated_at", "2014-10-16 18:13:02.552309"], ["username", "b26a270ffc287f5c80011a2de72f6213"]]
25074
+  (0.6ms) commit transaction
25075
+  (0.0ms) begin transaction
25076
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.554092"], ["email", "orpha.kutch@murrayherman.biz"], ["name", "Ralph Rutherford"], ["password_hash", "f6069cf1dd632f9be1fa53d35644ff2c"], ["updated_at", "2014-10-16 18:13:02.554092"], ["username", "57e63fa4b6e89e61fb2a355e3246981b"]]
25077
+  (0.6ms) commit transaction
25078
+  (0.0ms) begin transaction
25079
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.555861"], ["email", "alfreda@batzblick.biz"], ["name", "Brenden Robel"], ["password_hash", "67219dcc91e0667f79185c725eae2392"], ["updated_at", "2014-10-16 18:13:02.555861"], ["username", "440013b852fa253d7a3de80822becf68"]]
25080
+  (0.6ms) commit transaction
25081
+  (0.0ms) begin transaction
25082
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.557602"], ["email", "annie.koch@wisoky.net"], ["name", "Doris McKenzie V"], ["password_hash", "81228f901871907d07f76c728f101594"], ["updated_at", "2014-10-16 18:13:02.557602"], ["username", "6140f1d615fd392fcb2756a81c42ea8f"]]
25083
+  (0.6ms) commit transaction
25084
+  (0.0ms) begin transaction
25085
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.559319"], ["email", "general@okonkreiger.biz"], ["name", "Dorthy Hodkiewicz"], ["password_hash", "c935fdf715d7c57e5b3ef6e03ce36cff"], ["updated_at", "2014-10-16 18:13:02.559319"], ["username", "4c3df7012f2807a842a1b0d98744cb75"]]
25086
+  (0.6ms) commit transaction
25087
+  (0.0ms) begin transaction
25088
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.561012"], ["email", "jamaal_stiedemann@mckenzie.com"], ["name", "Fannie Nader"], ["password_hash", "7403accaed512e1d04ea2da2e94684a1"], ["updated_at", "2014-10-16 18:13:02.561012"], ["username", "316bfedb8c371c67b068c3e381e9da9f"]]
25089
+  (0.6ms) commit transaction
25090
+  (0.0ms) begin transaction
25091
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.562674"], ["email", "dandre@rosenbaum.org"], ["name", "Korbin Rolfson"], ["password_hash", "9ac71a3383ae112ac13a9a65314c93d6"], ["updated_at", "2014-10-16 18:13:02.562674"], ["username", "4466e9ae36804ed1c058b282e453348e"]]
25092
+  (0.6ms) commit transaction
25093
+  (0.0ms) begin transaction
25094
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.564354"], ["email", "sam@carterbayer.org"], ["name", "Freddie Wintheiser"], ["password_hash", "c7c5d394ce227aa7b4bc4f6f5d91b401"], ["updated_at", "2014-10-16 18:13:02.564354"], ["username", "cf369c06f8adf5dbab405c24aa5b9620"]]
25095
+  (0.6ms) commit transaction
25096
+  (0.0ms) begin transaction
25097
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.566032"], ["email", "elliot_sanford@lakinbechtelar.net"], ["name", "Davon Koepp"], ["password_hash", "75b80b5985bbc3dab9bba5a100dd54c5"], ["updated_at", "2014-10-16 18:13:02.566032"], ["username", "26af0aed29298678297ce3ff122c474c"]]
25098
+  (0.6ms) commit transaction
25099
+  (0.0ms) begin transaction
25100
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.567761"], ["email", "joannie@king.info"], ["name", "Mr. George Hilll"], ["password_hash", "fadbfb7ebeb27f04ecd9953fef08565e"], ["updated_at", "2014-10-16 18:13:02.567761"], ["username", "ea2dc197e3677dbf31e98e3903845b97"]]
25101
+  (0.6ms) commit transaction
25102
+  (0.0ms) begin transaction
25103
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.569510"], ["email", "callie@klocko.name"], ["name", "Mattie Cartwright Jr."], ["password_hash", "cf638412089b6bf2b06c112ea460bc17"], ["updated_at", "2014-10-16 18:13:02.569510"], ["username", "8ea8ae4ae1e4e9154cd19fd7022e593a"]]
25104
+  (0.6ms) commit transaction
25105
+  (0.0ms) begin transaction
25106
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.571234"], ["email", "ricky@cruickshank.net"], ["name", "Ms. Lonny Leannon"], ["password_hash", "4766c71ef54fdd55a94745a397795713"], ["updated_at", "2014-10-16 18:13:02.571234"], ["username", "b05a7519ca773704895e90d10e63ce99"]]
25107
+  (0.6ms) commit transaction
25108
+  (0.0ms) begin transaction
25109
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.572961"], ["email", "emilia.thompson@maggio.com"], ["name", "Blanche Denesik"], ["password_hash", "47a1a0705429ea4b28e504427dae4649"], ["updated_at", "2014-10-16 18:13:02.572961"], ["username", "0f25e682f5c99c50c04d8a3683d79d94"]]
25110
+  (0.6ms) commit transaction
25111
+  (0.0ms) begin transaction
25112
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.574710"], ["email", "heidi@luettgen.net"], ["name", "Emmie Veum PhD"], ["password_hash", "b118975aa26e0e2595f9803bb25638d6"], ["updated_at", "2014-10-16 18:13:02.574710"], ["username", "33756ed766f1b453758ff8bed49b04c8"]]
25113
+  (0.6ms) commit transaction
25114
+  (0.0ms) begin transaction
25115
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.576440"], ["email", "mary_langworth@fishermetz.net"], ["name", "Eddie Dooley"], ["password_hash", "8c17b181b426bfafc686952e582b0933"], ["updated_at", "2014-10-16 18:13:02.576440"], ["username", "ce73e42b147b56c2e7d9f31e12008f96"]]
25116
+  (0.6ms) commit transaction
25117
+  (0.0ms) begin transaction
25118
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.578167"], ["email", "janie@hansen.net"], ["name", "Dr. Dallas Pfannerstill"], ["password_hash", "d76093ac1a43a4efc6e7f3f4f63480e3"], ["updated_at", "2014-10-16 18:13:02.578167"], ["username", "dc57ad017b132ebdf3aed5e8f3edb7b9"]]
25119
+  (0.7ms) commit transaction
25120
+  (0.0ms) begin transaction
25121
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.580009"], ["email", "damon_gibson@vandervortwyman.name"], ["name", "Maryjane Batz"], ["password_hash", "17a224f93d528042230d1229e6388b73"], ["updated_at", "2014-10-16 18:13:02.580009"], ["username", "a260b4ead03a998944271e9c628ee3bf"]]
25122
+  (0.7ms) commit transaction
25123
+  (0.0ms) begin transaction
25124
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.581775"], ["email", "jerrold.nolan@jones.com"], ["name", "Christopher Kreiger"], ["password_hash", "c3e2578de961acc54db58ac27f166630"], ["updated_at", "2014-10-16 18:13:02.581775"], ["username", "a09e99d2771986298708770f2d041745"]]
25125
+  (0.6ms) commit transaction
25126
+  (0.0ms) begin transaction
25127
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.583483"], ["email", "naomie@flatley.biz"], ["name", "Morris Walker"], ["password_hash", "ecf4f3ee6765dced936bea514c946c26"], ["updated_at", "2014-10-16 18:13:02.583483"], ["username", "deef3e249fdabd1e818245f95335dab1"]]
25128
+  (0.6ms) commit transaction
25129
+  (0.0ms) begin transaction
25130
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.585167"], ["email", "annabell_kautzer@brownraynor.biz"], ["name", "Mr. Ubaldo Brown"], ["password_hash", "321d686253e4b29e001a261e3f8fdc46"], ["updated_at", "2014-10-16 18:13:02.585167"], ["username", "a3501b08756fcac7c50863fcfc202690"]]
25131
+  (0.6ms) commit transaction
25132
+  (0.0ms) begin transaction
25133
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.586877"], ["email", "daija@rogahnbarrows.com"], ["name", "Spencer Considine"], ["password_hash", "9569c6b02edd404f383bbababcc31106"], ["updated_at", "2014-10-16 18:13:02.586877"], ["username", "a6d1596a90fc94d3860cc9f65b2cc817"]]
25134
+  (0.6ms) commit transaction
25135
+  (0.0ms) begin transaction
25136
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.588590"], ["email", "berniece@jast.com"], ["name", "Liana Kuphal"], ["password_hash", "14a393c6d77f835c103b5ada528a708f"], ["updated_at", "2014-10-16 18:13:02.588590"], ["username", "d422c3bfba74ef7e57133215fe09c0a1"]]
25137
+  (0.7ms) commit transaction
25138
+  (0.0ms) begin transaction
25139
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.590463"], ["email", "francisco.gottlieb@zemlakgrimes.com"], ["name", "Ms. Marcelle Lockman"], ["password_hash", "7663ddb925da42873f2ebc0e911dc64e"], ["updated_at", "2014-10-16 18:13:02.590463"], ["username", "09198502eb011e7ef6310550ad25e319"]]
25140
+  (0.6ms) commit transaction
25141
+  (0.1ms) begin transaction
25142
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.592169"], ["email", "erika.mosciski@welch.org"], ["name", "Eldora Trantow"], ["password_hash", "82a1d1f3b0de229bbc75117ada3c2dc8"], ["updated_at", "2014-10-16 18:13:02.592169"], ["username", "400d194e939d48a4d085995da2d671c4"]]
25143
+  (0.6ms) commit transaction
25144
+  (0.0ms) begin transaction
25145
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.593900"], ["email", "reed_okeefe@littel.net"], ["name", "Javonte Hirthe"], ["password_hash", "58a032ba0b74148a38b470a20dcd7b9d"], ["updated_at", "2014-10-16 18:13:02.593900"], ["username", "d69bee9739cb7930959eb57a8a739b05"]]
25146
+  (0.6ms) commit transaction
25147
+  (0.0ms) begin transaction
25148
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.595574"], ["email", "justen@terrybruen.org"], ["name", "Dr. Yasmeen Stoltenberg"], ["password_hash", "93f97034d9bb8a7de19c2e982a0e32f1"], ["updated_at", "2014-10-16 18:13:02.595574"], ["username", "2de8c0ce58bc7304b41fefab4a8d1d17"]]
25149
+  (0.6ms) commit transaction
25150
+  (0.0ms) begin transaction
25151
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.597276"], ["email", "rubye_bergnaum@hickle.info"], ["name", "Alivia Lynch"], ["password_hash", "b5c6b67e1113fb8dc48b1f83f6378c72"], ["updated_at", "2014-10-16 18:13:02.597276"], ["username", "961a11c976389e45aed11c4f26de125f"]]
25152
+  (0.6ms) commit transaction
25153
+  (0.0ms) begin transaction
25154
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.598881"], ["email", "dane@watsica.biz"], ["name", "Ms. Jeremy Goyette"], ["password_hash", "84f5362c8addf7ba098740872cc1b358"], ["updated_at", "2014-10-16 18:13:02.598881"], ["username", "6a0e3bd3c039177be673a3ac4ff9ffc3"]]
25155
+  (0.7ms) commit transaction
25156
+  (0.0ms) begin transaction
25157
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.600644"], ["email", "river@murazikhuels.org"], ["name", "Jake Wisoky"], ["password_hash", "c0d31ec1841f316e654b4031e2260daa"], ["updated_at", "2014-10-16 18:13:02.600644"], ["username", "5b0a801c3cdb714487628a29bf2264b8"]]
25158
+  (0.7ms) commit transaction
25159
+  (0.0ms) begin transaction
25160
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.602377"], ["email", "delaney.rau@lynch.name"], ["name", "Nolan Reinger"], ["password_hash", "d5b5b525a3b859be58c75da8d7e643ab"], ["updated_at", "2014-10-16 18:13:02.602377"], ["username", "a06374b45a0f65341e7d2cb5f4687d3a"]]
25161
+  (0.6ms) commit transaction
25162
+  (0.0ms) begin transaction
25163
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.604116"], ["email", "julius_rice@greenholt.info"], ["name", "Vesta Cruickshank"], ["password_hash", "adad5a68480cea9f1c5efea747660a61"], ["updated_at", "2014-10-16 18:13:02.604116"], ["username", "1de209917ab31d7043b3f7616476a336"]]
25164
+  (0.7ms) commit transaction
25165
+  (0.0ms) begin transaction
25166
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.605925"], ["email", "karina@romaguera.name"], ["name", "Amalia Bahringer III"], ["password_hash", "df576a949679302dc8aa56884fa93177"], ["updated_at", "2014-10-16 18:13:02.605925"], ["username", "4c5252b7f70f378b140e9ffab5cf59ae"]]
25167
+  (0.7ms) commit transaction
25168
+  (0.0ms) begin transaction
25169
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.607692"], ["email", "broderick@casper.biz"], ["name", "Bernardo Hansen"], ["password_hash", "8dd8dd6201418f0e6a224912eb312d02"], ["updated_at", "2014-10-16 18:13:02.607692"], ["username", "f2056ec96e4e6ae813679e1e26a0edab"]]
25170
+  (0.6ms) commit transaction
25171
+  (0.0ms) begin transaction
25172
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.609357"], ["email", "joseph@leschstehr.info"], ["name", "Jazlyn Paucek I"], ["password_hash", "7e16d60b0483cc40266ec9a7f3a4202f"], ["updated_at", "2014-10-16 18:13:02.609357"], ["username", "0fff25185d6f8d1f09e7a2d361cf5390"]]
25173
+  (0.6ms) commit transaction
25174
+  (0.0ms) begin transaction
25175
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.611096"], ["email", "marvin@leuschkefranecki.com"], ["name", "Marielle White III"], ["password_hash", "42e13b0aae95ba3faf3fb7c09eac2b79"], ["updated_at", "2014-10-16 18:13:02.611096"], ["username", "c7bf8117c6e279e54dc86ffc39b227b1"]]
25176
+  (0.6ms) commit transaction
25177
+  (0.0ms) begin transaction
25178
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.612816"], ["email", "baron_okuneva@bergstrom.com"], ["name", "Berenice Larkin"], ["password_hash", "cc768393bf694c10f7fa33b08fa16212"], ["updated_at", "2014-10-16 18:13:02.612816"], ["username", "d0f253202d513f52e1d0490b7860f7f0"]]
25179
+  (0.6ms) commit transaction
25180
+  (0.0ms) begin transaction
25181
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.614483"], ["email", "boyd.keebler@jones.name"], ["name", "Waylon DuBuque"], ["password_hash", "7e94bf50e1db1e31f1cad0dfb8c2e4ca"], ["updated_at", "2014-10-16 18:13:02.614483"], ["username", "f66c2eefb97b24063d831133dfac4b03"]]
25182
+  (0.6ms) commit transaction
25183
+  (0.0ms) begin transaction
25184
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.616218"], ["email", "dustin_mueller@schoen.net"], ["name", "Kobe Terry PhD"], ["password_hash", "eb65c9b3f8a35cee3ee660d9a29c513b"], ["updated_at", "2014-10-16 18:13:02.616218"], ["username", "1767af0a01751efaad1217598fbe8bb1"]]
25185
+  (0.6ms) commit transaction
25186
+  (0.0ms) begin transaction
25187
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.617893"], ["email", "meggie@hartmann.net"], ["name", "Mrs. Dallas Haley"], ["password_hash", "e669ac7d1206229e49565689154f53e1"], ["updated_at", "2014-10-16 18:13:02.617893"], ["username", "a456c44b50a9788303a16f75481093fd"]]
25188
+  (0.7ms) commit transaction
25189
+  (0.0ms) begin transaction
25190
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.619636"], ["email", "wyman.pacocha@heaney.net"], ["name", "Louvenia Shanahan DVM"], ["password_hash", "f04fefa289e44a136d091f67d6cf8361"], ["updated_at", "2014-10-16 18:13:02.619636"], ["username", "a2ce8bc707b4c6cdb4d8d58d6da743fc"]]
25191
+  (0.6ms) commit transaction
25192
+  (0.0ms) begin transaction
25193
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.621343"], ["email", "keaton_kutch@mitchellsipes.name"], ["name", "Hudson Parker"], ["password_hash", "c51486aa7dacb7fffef2579e6d7dd6f8"], ["updated_at", "2014-10-16 18:13:02.621343"], ["username", "0bd5f97e927e0423ad46718153e993f5"]]
25194
+  (0.6ms) commit transaction
25195
+  (0.0ms) begin transaction
25196
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.623056"], ["email", "isabell.dubuque@koepp.org"], ["name", "Miss Blaze Carter"], ["password_hash", "464e55774cfda6165aada191c2d59dfd"], ["updated_at", "2014-10-16 18:13:02.623056"], ["username", "cff37c51c80ccfda8c9143affd2973fa"]]
25197
+  (0.6ms) commit transaction
25198
+  (0.0ms) begin transaction
25199
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.624756"], ["email", "bud@satterfield.info"], ["name", "Ms. Lucas Ankunding"], ["password_hash", "ccc7c7259f940277e00dd515dc0cf6d8"], ["updated_at", "2014-10-16 18:13:02.624756"], ["username", "a1f9e0cd0cfd272db5fe6c9a0b226ca3"]]
25200
+  (0.6ms) commit transaction
25201
+  (0.0ms) begin transaction
25202
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.626448"], ["email", "jake.blanda@bruen.com"], ["name", "Levi Marquardt"], ["password_hash", "c8b6ed23689f77dc6717ea848972f630"], ["updated_at", "2014-10-16 18:13:02.626448"], ["username", "e15d856dc062718aaddb01e660fa8a4c"]]
25203
+  (0.6ms) commit transaction
25204
+  (0.0ms) begin transaction
25205
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.628220"], ["email", "rowan.connelly@sauer.name"], ["name", "Greyson Connelly"], ["password_hash", "03a9127a3d7d0943516049f472e3d5b7"], ["updated_at", "2014-10-16 18:13:02.628220"], ["username", "4b48cb5f440f56fb5a7664bd1c8fd202"]]
25206
+  (0.7ms) commit transaction
25207
+  (0.0ms) begin transaction
25208
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.629998"], ["email", "bethel@stokes.net"], ["name", "Miss Guiseppe Carroll"], ["password_hash", "db32afc6aebb4ff1ea128b381fade1bd"], ["updated_at", "2014-10-16 18:13:02.629998"], ["username", "a80b72926cbee16820c9ed4b85b9d25b"]]
25209
+  (0.7ms) commit transaction
25210
+  (0.0ms) begin transaction
25211
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.631863"], ["email", "gregorio@balistrerimcclure.net"], ["name", "Kody Stiedemann II"], ["password_hash", "3642da4299366f9d6c5d452e1ab14203"], ["updated_at", "2014-10-16 18:13:02.631863"], ["username", "5a16c092ab14532e1af5dd295970e9f8"]]
25212
+  (0.6ms) commit transaction
25213
+  (0.0ms) begin transaction
25214
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.633517"], ["email", "hans@macejkovic.com"], ["name", "Rosalyn Schuster"], ["password_hash", "2f9528ca862349c3802cf8e52325c769"], ["updated_at", "2014-10-16 18:13:02.633517"], ["username", "bfc84309f878afba5c83cd60997206e2"]]
25215
+  (0.6ms) commit transaction
25216
+  (0.0ms) begin transaction
25217
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.635202"], ["email", "colten.ondricka@reichelgreenfelder.net"], ["name", "Frederick Baumbach DVM"], ["password_hash", "7fcedd509ac4962b5c2e8c1ebddc9624"], ["updated_at", "2014-10-16 18:13:02.635202"], ["username", "93cf7645c8590bf0908a99857fe57cfc"]]
25218
+  (0.6ms) commit transaction
25219
+  (0.0ms) begin transaction
25220
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.636878"], ["email", "micah@frami.com"], ["name", "Ulices Anderson"], ["password_hash", "606f395daa7c0193c946b3b24bdb65cd"], ["updated_at", "2014-10-16 18:13:02.636878"], ["username", "40009932cad84092e196508003239ea0"]]
25221
+  (0.6ms) commit transaction
25222
+  (0.0ms) begin transaction
25223
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.638549"], ["email", "marcos@westframi.com"], ["name", "Raphaelle Gaylord"], ["password_hash", "84fcb100abdaa7385890e68bc48e2eb0"], ["updated_at", "2014-10-16 18:13:02.638549"], ["username", "f112af3616739c7a90ce1be679510104"]]
25224
+  (0.6ms) commit transaction
25225
+  (0.0ms) begin transaction
25226
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.640200"], ["email", "ola@hickle.biz"], ["name", "Anna Strosin"], ["password_hash", "3010b680c90c158224b197d9e537dae2"], ["updated_at", "2014-10-16 18:13:02.640200"], ["username", "7068a716321a49202c946d9e47d0e693"]]
25227
+  (0.7ms) commit transaction
25228
+  (0.0ms) begin transaction
25229
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.641964"], ["email", "lacy.stiedemann@fahey.biz"], ["name", "Percy Fahey"], ["password_hash", "ff4491b9da1a6e2b17c7092c8bd29375"], ["updated_at", "2014-10-16 18:13:02.641964"], ["username", "a4d5b1cf35a95a453760f99a4c63fe72"]]
25230
+  (0.7ms) commit transaction
25231
+  (0.0ms) begin transaction
25232
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.643723"], ["email", "aubree.will@greenrowe.org"], ["name", "Alysson Kunze IV"], ["password_hash", "c946d7a4bde48a39604fe8aaf0874e80"], ["updated_at", "2014-10-16 18:13:02.643723"], ["username", "b56e30e2b178ca2948cded8328b1d56f"]]
25233
+  (0.7ms) commit transaction
25234
+  (0.0ms) begin transaction
25235
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.645742"], ["email", "theron_goldner@kunze.name"], ["name", "Shana Mohr"], ["password_hash", "20d882b224559da4dc35d181283c0633"], ["updated_at", "2014-10-16 18:13:02.645742"], ["username", "61013854e6de9024194e6dfd7accd0f1"]]
25236
+  (0.6ms) commit transaction
25237
+  (0.0ms) begin transaction
25238
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.647461"], ["email", "gregoria_lemke@grahamstoltenberg.info"], ["name", "Chance Runolfsson"], ["password_hash", "df258b3c79a6f3444e8800411738f427"], ["updated_at", "2014-10-16 18:13:02.647461"], ["username", "7730fa068b5e4e2e5d2ba1e5186d5f86"]]
25239
+  (0.7ms) commit transaction
25240
+  (0.0ms) begin transaction
25241
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.649245"], ["email", "aisha@gerhold.net"], ["name", "Skylar Willms"], ["password_hash", "a4c578302a0ebaa9684bb339c08d4b32"], ["updated_at", "2014-10-16 18:13:02.649245"], ["username", "b26c4f4efe0ca603c3adcedd3fee8e06"]]
25242
+  (0.7ms) commit transaction
25243
+  (0.0ms) begin transaction
25244
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.650971"], ["email", "rosemary.emard@vandervort.info"], ["name", "Verna Nikolaus"], ["password_hash", "435f2c5dc0f5989aaa6e9e841d791b74"], ["updated_at", "2014-10-16 18:13:02.650971"], ["username", "ae1b6f0ecc9467400c82b23ccf0f3c89"]]
25245
+  (0.7ms) commit transaction
25246
+  (0.0ms) begin transaction
25247
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.652823"], ["email", "daphnee@dibbert.org"], ["name", "Cruz Crona"], ["password_hash", "6a3935a772f6e6c429c012f9223ca947"], ["updated_at", "2014-10-16 18:13:02.652823"], ["username", "8477141ed66b13d9e2c82c6fc2aad799"]]
25248
+  (0.7ms) commit transaction
25249
+  (0.0ms) begin transaction
25250
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.654594"], ["email", "walton@rempelfahey.net"], ["name", "Carley Bogisich"], ["password_hash", "5221d6c64dd395a6fe48c469c28abac9"], ["updated_at", "2014-10-16 18:13:02.654594"], ["username", "c6c7090397da4b5f260a09de841af990"]]
25251
+  (0.6ms) commit transaction
25252
+  (0.0ms) begin transaction
25253
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.656283"], ["email", "keanu_wintheiser@johnstonbashirian.org"], ["name", "Marilyne Harvey"], ["password_hash", "1e0640321db6fa3a5c4f70c1de84d2d4"], ["updated_at", "2014-10-16 18:13:02.656283"], ["username", "32eebce05dc717f29e39b4acf88d0c16"]]
25254
+  (0.6ms) commit transaction
25255
+  (0.0ms) begin transaction
25256
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.657964"], ["email", "rubie_weber@zboncakbreitenberg.name"], ["name", "Hope Goyette DDS"], ["password_hash", "8c687b1ba9fa64b4a02233fbc6ed386b"], ["updated_at", "2014-10-16 18:13:02.657964"], ["username", "174b75d5d0ad0438e980c2601c05b8fe"]]
25257
+  (0.6ms) commit transaction
25258
+  (0.0ms) begin transaction
25259
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.659618"], ["email", "julia_ebert@medhurst.org"], ["name", "Sigrid Becker"], ["password_hash", "4cf78139f7841f53dab45fe62481e7f2"], ["updated_at", "2014-10-16 18:13:02.659618"], ["username", "6d50f571afc7be3bdd7fa164201f59d6"]]
25260
+  (0.6ms) commit transaction
25261
+  (0.0ms) begin transaction
25262
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.661266"], ["email", "emerson@boyerreinger.com"], ["name", "Vita Bergstrom PhD"], ["password_hash", "804b01d976115bec0561502475d20420"], ["updated_at", "2014-10-16 18:13:02.661266"], ["username", "1873f50ef797b0ee13e4f64483f03e6c"]]
25263
+  (0.7ms) commit transaction
25264
+  (0.0ms) begin transaction
25265
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.663085"], ["email", "jacey@rennermiller.info"], ["name", "Monte Zieme IV"], ["password_hash", "e4290bd10b761c4c0214c30dc4b6a83c"], ["updated_at", "2014-10-16 18:13:02.663085"], ["username", "bdf04bd054f30cb8974acaf8b05e1ba7"]]
25266
+  (0.6ms) commit transaction
25267
+  (0.0ms) begin transaction
25268
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.664719"], ["email", "irving@hudson.net"], ["name", "Alford Bruen"], ["password_hash", "396b3fbb69cce9355f338d0a7d8c5886"], ["updated_at", "2014-10-16 18:13:02.664719"], ["username", "117534fa6a17e11c38625165696ee087"]]
25269
+  (0.6ms) commit transaction
25270
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."name" LIKE '% doe%'
25271
+  (0.0ms) begin transaction
25272
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.667769"], ["email", "john@doe.com"], ["name", "John Doe"], ["password_hash", "cdbd38e42098cf8ae0ea4284fa31c7aa"], ["updated_at", "2014-10-16 18:13:02.667769"], ["username", "doejohn"]]
25273
+  (0.6ms) commit transaction
25274
+  (0.0ms) begin transaction
25275
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.669332"], ["email", "jane@doe.com"], ["name", "Jane Doe"], ["password_hash", "65b6c6a84b258df3989b7315abcbeeb4"], ["updated_at", "2014-10-16 18:13:02.669332"], ["username", "doejane"]]
25276
+  (0.7ms) commit transaction
25277
+  (0.0ms) begin transaction
25278
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-16 18:13:02.670957"], ["email", "jack@doe.com"], ["name", "Jack Doe"], ["password_hash", "f0876ffa50d8f3c87179e494e2951c8c"], ["updated_at", "2014-10-16 18:13:02.670957"], ["username", "doejack"]]
25279
+  (0.6ms) commit transaction
25280
+  (0.1ms) begin transaction
25281
+  (0.1ms) commit transaction
25282
+  (0.3ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
25283
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
25284
+  (0.0ms) begin transaction
25285
+  (0.0ms) commit transaction
25286
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
25287
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
25288
+  (0.0ms) begin transaction
25289
+  (0.0ms) commit transaction
25290
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
25291
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
25292
+  (0.0ms) begin transaction
25293
+  (0.0ms) commit transaction
25294
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'DoE%'))
25295
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'DoE%')) ORDER BY "users"."created_at" ASC, "users"."id" ASC
25296
+  (0.0ms) begin transaction
25297
+  (0.0ms) commit transaction
25298
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'dOe%'))
25299
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'dOe%')) ORDER BY "users"."created_at" DESC, "users"."id" DESC
25300
+  (0.1ms) SELECT COUNT(*) FROM "users"
25301
+  (0.0ms) begin transaction
25302
+  (0.0ms) commit transaction
25303
+  (0.1ms) SELECT COUNT(*) FROM "users"
25304
+ User Load (0.4ms) SELECT "users".* FROM "users"
25305
+  (0.0ms) begin transaction
25306
+  (0.0ms) commit transaction
25307
+  (0.1ms) SELECT COUNT(*) FROM "users"
25308
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 0
25309
+  (0.0ms) begin transaction
25310
+  (0.0ms) commit transaction
25311
+  (0.1ms) SELECT COUNT(*) FROM "users"
25312
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 0
25313
+  (0.0ms) begin transaction
25314
+  (0.0ms) commit transaction
25315
+  (0.1ms) SELECT COUNT(*) FROM "users"
25316
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 20
25317
+  (0.0ms) begin transaction
25318
+  (0.0ms) commit transaction
25319
+  (0.1ms) SELECT COUNT(*) FROM "users"
25320
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 40
25321
+  (0.0ms) begin transaction
25322
+  (0.0ms) commit transaction
25323
+  (0.1ms) SELECT COUNT(*) FROM "users"
25324
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 60
25325
+  (0.0ms) begin transaction
25326
+  (0.0ms) commit transaction
25327
+  (0.1ms) SELECT COUNT(*) FROM "users"
25328
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 80
25329
+  (0.0ms) begin transaction
25330
+  (0.0ms) commit transaction
25331
+  (0.1ms) SELECT COUNT(*) FROM "users"
25332
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 19980
25333
+  (1.8ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
25334
+  (0.3ms) select sqlite_version(*)
25335
+  (1.0ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
25336
+  (0.9ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
25337
+  (0.9ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
25338
+  (0.2ms) SELECT sql
25339
+ FROM sqlite_master
25340
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25341
+ UNION ALL
25342
+ SELECT sql
25343
+ FROM sqlite_temp_master
25344
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25345
+
25346
+  (0.8ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
25347
+  (0.1ms) SELECT sql
25348
+ FROM sqlite_master
25349
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25350
+ UNION ALL
25351
+ SELECT sql
25352
+ FROM sqlite_temp_master
25353
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25354
+
25355
+  (0.1ms)  SELECT sql
25356
+ FROM sqlite_master
25357
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25358
+ UNION ALL
25359
+ SELECT sql
25360
+ FROM sqlite_temp_master
25361
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25362
+ 
25363
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
25364
+  (0.7ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
25365
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
25366
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
25367
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
25368
+  (0.1ms)  SELECT sql
25369
+ FROM sqlite_master
25370
+ WHERE name='index_users_on_email' AND type='index'
25371
+ UNION ALL
25372
+ SELECT sql
25373
+ FROM sqlite_temp_master
25374
+ WHERE name='index_users_on_email' AND type='index'
25375
+ 
25376
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
25377
+  (0.1ms)  SELECT sql
25378
+ FROM sqlite_master
25379
+ WHERE name='index_users_on_name' AND type='index'
25380
+ UNION ALL
25381
+ SELECT sql
25382
+ FROM sqlite_temp_master
25383
+ WHERE name='index_users_on_name' AND type='index'
25384
+ 
25385
+  (0.1ms) SELECT sql
25386
+ FROM sqlite_master
25387
+ WHERE name='index_users_on_email' AND type='index'
25388
+ UNION ALL
25389
+ SELECT sql
25390
+ FROM sqlite_temp_master
25391
+ WHERE name='index_users_on_email' AND type='index'
25392
+
25393
+  (0.7ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
25394
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
25395
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25396
+  (0.1ms) SELECT version FROM "schema_migrations"
25397
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
25398
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
25399
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25400
+  (2.1ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
25401
+  (0.1ms) select sqlite_version(*)
25402
+  (0.9ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
25403
+  (0.9ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
25404
+  (0.9ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
25405
+  (0.2ms) SELECT sql
25406
+ FROM sqlite_master
25407
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25408
+ UNION ALL
25409
+ SELECT sql
25410
+ FROM sqlite_temp_master
25411
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25412
+
25413
+  (0.9ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
25414
+  (0.1ms) SELECT sql
25415
+ FROM sqlite_master
25416
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25417
+ UNION ALL
25418
+ SELECT sql
25419
+ FROM sqlite_temp_master
25420
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25421
+
25422
+  (0.1ms)  SELECT sql
25423
+ FROM sqlite_master
25424
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25425
+ UNION ALL
25426
+ SELECT sql
25427
+ FROM sqlite_temp_master
25428
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25429
+ 
25430
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
25431
+  (0.7ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
25432
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
25433
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
25434
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
25435
+  (0.1ms)  SELECT sql
25436
+ FROM sqlite_master
25437
+ WHERE name='index_users_on_email' AND type='index'
25438
+ UNION ALL
25439
+ SELECT sql
25440
+ FROM sqlite_temp_master
25441
+ WHERE name='index_users_on_email' AND type='index'
25442
+ 
25443
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
25444
+  (0.1ms)  SELECT sql
25445
+ FROM sqlite_master
25446
+ WHERE name='index_users_on_name' AND type='index'
25447
+ UNION ALL
25448
+ SELECT sql
25449
+ FROM sqlite_temp_master
25450
+ WHERE name='index_users_on_name' AND type='index'
25451
+ 
25452
+  (0.1ms) SELECT sql
25453
+ FROM sqlite_master
25454
+ WHERE name='index_users_on_email' AND type='index'
25455
+ UNION ALL
25456
+ SELECT sql
25457
+ FROM sqlite_temp_master
25458
+ WHERE name='index_users_on_email' AND type='index'
25459
+
25460
+  (0.8ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
25461
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
25462
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25463
+  (0.1ms) SELECT version FROM "schema_migrations"
25464
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
25465
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
25466
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25467
+  (1.5ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
25468
+  (0.1ms) select sqlite_version(*)
25469
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
25470
+  (0.7ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
25471
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
25472
+  (0.1ms) SELECT sql
25473
+ FROM sqlite_master
25474
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25475
+ UNION ALL
25476
+ SELECT sql
25477
+ FROM sqlite_temp_master
25478
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25479
+
25480
+  (0.7ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
25481
+  (0.1ms) SELECT sql
25482
+ FROM sqlite_master
25483
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25484
+ UNION ALL
25485
+ SELECT sql
25486
+ FROM sqlite_temp_master
25487
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25488
+
25489
+  (0.1ms)  SELECT sql
25490
+ FROM sqlite_master
25491
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25492
+ UNION ALL
25493
+ SELECT sql
25494
+ FROM sqlite_temp_master
25495
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25496
+ 
25497
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
25498
+  (0.8ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
25499
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
25500
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
25501
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
25502
+  (0.1ms)  SELECT sql
25503
+ FROM sqlite_master
25504
+ WHERE name='index_users_on_email' AND type='index'
25505
+ UNION ALL
25506
+ SELECT sql
25507
+ FROM sqlite_temp_master
25508
+ WHERE name='index_users_on_email' AND type='index'
25509
+ 
25510
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
25511
+  (0.1ms)  SELECT sql
25512
+ FROM sqlite_master
25513
+ WHERE name='index_users_on_name' AND type='index'
25514
+ UNION ALL
25515
+ SELECT sql
25516
+ FROM sqlite_temp_master
25517
+ WHERE name='index_users_on_name' AND type='index'
25518
+ 
25519
+  (0.1ms) SELECT sql
25520
+ FROM sqlite_master
25521
+ WHERE name='index_users_on_email' AND type='index'
25522
+ UNION ALL
25523
+ SELECT sql
25524
+ FROM sqlite_temp_master
25525
+ WHERE name='index_users_on_email' AND type='index'
25526
+
25527
+  (0.8ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
25528
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
25529
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25530
+  (0.1ms) SELECT version FROM "schema_migrations"
25531
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
25532
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
25533
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25534
+  (0.1ms) begin transaction
25535
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.325118"], ["email", "salvatore_prohaska@schmidt.biz"], ["name", "Clay Schuster"], ["password_hash", "5cf834ee30b1b25091cbbf587a3817b7"], ["updated_at", "2015-01-14 00:58:44.325118"], ["username", "80a7743ea5dc9a0d93140e2b1126a7ff"]]
25536
+  (1.5ms) commit transaction
25537
+  (0.1ms) begin transaction
25538
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.331154"], ["email", "judge@hegmann.biz"], ["name", "Jayde Jast"], ["password_hash", "7f7290c8117f276403362da047de2cd1"], ["updated_at", "2015-01-14 00:58:44.331154"], ["username", "0ae93174d2cabb3c7f8fd2b4ef001186"]]
25539
+  (0.6ms) commit transaction
25540
+  (0.0ms) begin transaction
25541
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.335745"], ["email", "jedidiah_streich@dach.com"], ["name", "Theron Streich"], ["password_hash", "cfe9d960b5cbbdad7d799e303093b449"], ["updated_at", "2015-01-14 00:58:44.335745"], ["username", "8f7a1a7195debfa915283306d35e5e28"]]
25542
+  (0.7ms) commit transaction
25543
+  (0.0ms) begin transaction
25544
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.337871"], ["email", "leora@gulgowskischuster.net"], ["name", "Henderson Crist"], ["password_hash", "eb99a361e569030a9c70e1216927b1f5"], ["updated_at", "2015-01-14 00:58:44.337871"], ["username", "d3097fe5691b320ef956ff6a20f7df2d"]]
25545
+  (0.7ms) commit transaction
25546
+  (0.0ms) begin transaction
25547
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.340819"], ["email", "xander@bailey.biz"], ["name", "Mrs. Trystan Jast"], ["password_hash", "caee4ffb8443d2320403af0cc6546cb7"], ["updated_at", "2015-01-14 00:58:44.340819"], ["username", "73b760db84a366fc77d6387fa97f228c"]]
25548
+  (0.7ms) commit transaction
25549
+  (0.0ms) begin transaction
25550
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.342825"], ["email", "allison_nolan@lynch.com"], ["name", "Genevieve Hilll V"], ["password_hash", "0b88e435445f7976ff72e7e577e4ade4"], ["updated_at", "2015-01-14 00:58:44.342825"], ["username", "0fa574bfc6ce359e28c230d3f7bb1095"]]
25551
+  (0.7ms) commit transaction
25552
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
25553
+  (0.0ms) begin transaction
25554
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.356088"], ["email", "lyric.kerluke@hoeger.org"], ["name", "Miss Viviane Bogan"], ["password_hash", "4cd92280cca15a754759941758bd0689"], ["updated_at", "2015-01-14 00:58:44.356088"], ["username", "c16ce83803352d80b7448fc8826d326f"]]
25555
+  (0.7ms) commit transaction
25556
+  (0.4ms) begin transaction
25557
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.358843"], ["email", "gabriel.schumm@runte.info"], ["name", "Aisha Treutel"], ["password_hash", "63d76619bd48fff61a9f58fc0073da18"], ["updated_at", "2015-01-14 00:58:44.358843"], ["username", "559a5fde750858ab987efa67e7a9b485"]]
25558
+  (0.7ms) commit transaction
25559
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
25560
+  (0.0ms) begin transaction
25561
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.363127"], ["email", "litzy@armstrong.info"], ["name", "Sofia Nolan"], ["password_hash", "7a9005ca36419fb464e346805e6e8d1a"], ["updated_at", "2015-01-14 00:58:44.363127"], ["username", "432dc621440ba2024524b6531374ecfe"]]
25562
+  (0.7ms) commit transaction
25563
+  (0.1ms) begin transaction
25564
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.365313"], ["email", "nasir_huel@howell.org"], ["name", "Miss Palma Christiansen"], ["password_hash", "6bcafc776a94093d40fb5d09e1aa89d0"], ["updated_at", "2015-01-14 00:58:44.365313"], ["username", "877c3e06aa78b2e84996037d87ee77c9"]]
25565
+  (0.7ms) commit transaction
25566
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 ORDER BY "users"."id" ASC LIMIT 1
25567
+  (0.0ms) begin transaction
25568
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.386416"], ["email", "alexander@mosciski.info"], ["name", "Jamar Feest"], ["password_hash", "0bd6aea784751ba1e0512aa8cdf7c246"], ["updated_at", "2015-01-14 00:58:44.386416"], ["username", "86b6121c43bac3ff042b3e0da6586285"]]
25569
+  (0.9ms) commit transaction
25570
+  (0.0ms) begin transaction
25571
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.389684"], ["email", "pete@strosin.org"], ["name", "Grayce Baumbach"], ["password_hash", "e46e9058a778a4f9e1e2a79f1943631b"], ["updated_at", "2015-01-14 00:58:44.389684"], ["username", "0da233580e6f8ab51b4928b7dfbd808b"]]
25572
+  (0.7ms) commit transaction
25573
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 12 ORDER BY "users"."id" ASC LIMIT 1
25574
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
25575
+  (0.0ms) begin transaction
25576
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.394467"], ["email", "lonny_bauch@jonesjacobs.info"], ["name", "Camren Dach"], ["password_hash", "a37bc18fc1fa45dfe5aa953f6ec16353"], ["updated_at", "2015-01-14 00:58:44.394467"], ["username", "2b18f820919286b96136bf7db80e99a3"]]
25577
+  (0.7ms) commit transaction
25578
+  (0.0ms) begin transaction
25579
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.396652"], ["email", "christy@braun.info"], ["name", "Ronaldo Herzog"], ["password_hash", "f0aab3b869727cad4b125443121db1e6"], ["updated_at", "2015-01-14 00:58:44.396652"], ["username", "dcd51f985e1d204ad6ae605bd560bc42"]]
25580
+  (0.6ms) commit transaction
25581
+  (0.0ms) begin transaction
25582
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.398676"], ["email", "jayne_treutel@deckow.org"], ["name", "Myah Hansen"], ["password_hash", "e05b2e4364d0b521860d4a8d8d368432"], ["updated_at", "2015-01-14 00:58:44.398676"], ["username", "70298a3871fc4bbd90b556454f13e8db"]]
25583
+  (0.6ms) commit transaction
25584
+  (0.0ms) begin transaction
25585
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.400440"], ["email", "kallie@schumm.org"], ["name", "Dax Kunze"], ["password_hash", "124807a2905519e787cd27feb2e99511"], ["updated_at", "2015-01-14 00:58:44.400440"], ["username", "e8140f14f53d16bf803832379c2b6225"]]
25586
+  (0.7ms) commit transaction
25587
+  (0.0ms) begin transaction
25588
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.402590"], ["email", "dakota.casper@mann.org"], ["name", "Rex Morissette"], ["password_hash", "11bc1221cf10f000f77ea9a1d0d270ca"], ["updated_at", "2015-01-14 00:58:44.402590"], ["username", "52b1082a2cea2e8a5493d0acbc01ef01"]]
25589
+  (0.6ms) commit transaction
25590
+  (0.0ms) begin transaction
25591
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.404479"], ["email", "tomasa_grady@goodwin.biz"], ["name", "Keara Zemlak"], ["password_hash", "781b1aca4849c110a98a8540ee0390b2"], ["updated_at", "2015-01-14 00:58:44.404479"], ["username", "5d21f80ac9ba19faceda92fc94f9b354"]]
25592
+  (0.7ms) commit transaction
25593
+  (0.0ms) begin transaction
25594
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.406376"], ["email", "margaretta_huels@ohara.com"], ["name", "Norene Runolfsdottir"], ["password_hash", "67317dd585c5f34d42244c0238a5b9ea"], ["updated_at", "2015-01-14 00:58:44.406376"], ["username", "ec6b1ec9d458f51427f8da5bd63d94b9"]]
25595
+  (0.7ms) commit transaction
25596
+  (0.0ms) begin transaction
25597
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.408400"], ["email", "amir@grimes.net"], ["name", "Ida Swaniawski"], ["password_hash", "d1b31c074ad2e6a426f79a83bfaef7b8"], ["updated_at", "2015-01-14 00:58:44.408400"], ["username", "f01cd2922a83620e5222cbb5a6801de1"]]
25598
+  (0.7ms) commit transaction
25599
+  (0.0ms) begin transaction
25600
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.410288"], ["email", "maxwell@thompsonkautzer.biz"], ["name", "Armani Schulist"], ["password_hash", "e4ab22315c58dcaa5aa3bb900e7827c3"], ["updated_at", "2015-01-14 00:58:44.410288"], ["username", "4b95b2777974457092aa5f0c6c5cafda"]]
25601
+  (0.6ms) commit transaction
25602
+  (0.0ms) begin transaction
25603
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.412025"], ["email", "kelvin@dietrich.com"], ["name", "Daisy Cruickshank II"], ["password_hash", "aca63ff8ca3b4a30f9e3334b8a0e6310"], ["updated_at", "2015-01-14 00:58:44.412025"], ["username", "df379a3a61b7acf08123ebbf10c0c005"]]
25604
+  (1.0ms) commit transaction
25605
+  (0.0ms) begin transaction
25606
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.414418"], ["email", "lazaro.feeney@schneiderkoepp.net"], ["name", "Britney Zemlak"], ["password_hash", "48cb58900080ccb77163357de911627f"], ["updated_at", "2015-01-14 00:58:44.414418"], ["username", "6b8c30c94beed936a25cf71c88b4fd9e"]]
25607
+  (0.6ms) commit transaction
25608
+  (0.0ms) begin transaction
25609
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.416342"], ["email", "van@welch.name"], ["name", "Janie Metz"], ["password_hash", "a366bbc2fa185a9e8a1c18064db459e7"], ["updated_at", "2015-01-14 00:58:44.416342"], ["username", "d88b9b164b38397ef82fbcba60a915ef"]]
25610
+  (0.7ms) commit transaction
25611
+  (0.0ms) begin transaction
25612
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.418141"], ["email", "nathen@herzog.net"], ["name", "Terrell Jast"], ["password_hash", "bfbd1829a5c8a59656cb64bf22fdc001"], ["updated_at", "2015-01-14 00:58:44.418141"], ["username", "77436c547eb029287d94d7c7f07daf45"]]
25613
+  (0.9ms) commit transaction
25614
+  (0.0ms) begin transaction
25615
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.420184"], ["email", "ashlynn@hudson.net"], ["name", "Miguel Moore"], ["password_hash", "359c11e1a0200724cd8986746415ea0e"], ["updated_at", "2015-01-14 00:58:44.420184"], ["username", "8ff428629010794ddf7923246e5b4554"]]
25616
+  (0.7ms) commit transaction
25617
+  (0.0ms) begin transaction
25618
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.421990"], ["email", "parker@bernhard.org"], ["name", "Kendrick Schmeler V"], ["password_hash", "1ee645fc77f1dc27e7508be5105f1716"], ["updated_at", "2015-01-14 00:58:44.421990"], ["username", "19b6ff325ad78f048fa775e64bb8d327"]]
25619
+  (0.7ms) commit transaction
25620
+  (0.0ms) begin transaction
25621
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.423748"], ["email", "betty.west@padberg.info"], ["name", "Everette Stoltenberg"], ["password_hash", "17eac9abd0c07c18e8975dd7b92f2f5b"], ["updated_at", "2015-01-14 00:58:44.423748"], ["username", "37c0cd3354d1ef251ea97c67cc21d117"]]
25622
+  (0.7ms) commit transaction
25623
+  (0.0ms) begin transaction
25624
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.425471"], ["email", "caleigh@gislasonlubowitz.name"], ["name", "Kaleigh Vandervort"], ["password_hash", "f72f43ef2092d88b5e09288809cfa557"], ["updated_at", "2015-01-14 00:58:44.425471"], ["username", "bc9bb893ab2fcfd25ad3452c4b4436c0"]]
25625
+  (0.6ms) commit transaction
25626
+  (0.0ms) begin transaction
25627
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.427219"], ["email", "donald@kreiger.biz"], ["name", "Maritza Botsford II"], ["password_hash", "c0a53c92a176c18dbfc44d178af796a8"], ["updated_at", "2015-01-14 00:58:44.427219"], ["username", "ca230f7d32c866e6df26d56312720c84"]]
25628
+  (0.7ms) commit transaction
25629
+  (0.0ms) begin transaction
25630
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.429021"], ["email", "george.weinat@zemlak.biz"], ["name", "Arvel Weissnat"], ["password_hash", "6a7f4e2f8e9c38859da446045d03a726"], ["updated_at", "2015-01-14 00:58:44.429021"], ["username", "e4f10d4d5b321a971dbf1909ad630116"]]
25631
+  (0.6ms) commit transaction
25632
+  (0.1ms) begin transaction
25633
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.430782"], ["email", "antoinette.bauch@schneider.biz"], ["name", "Hermina Christiansen"], ["password_hash", "a5f3bf4c55135ce615706fa27196914e"], ["updated_at", "2015-01-14 00:58:44.430782"], ["username", "01f5127a450fe7ba155e972f6dea8816"]]
25634
+  (0.7ms) commit transaction
25635
+  (0.0ms) begin transaction
25636
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.432656"], ["email", "rahsaan.wiza@kreigerromaguera.info"], ["name", "Sophia Kutch"], ["password_hash", "29b81ad59a4e7339aaa449b84a20ced6"], ["updated_at", "2015-01-14 00:58:44.432656"], ["username", "e009dd190ae36c0ab838436a8d76c44b"]]
25637
+  (0.7ms) commit transaction
25638
+  (0.0ms) begin transaction
25639
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.434571"], ["email", "rubie.okeefe@ziemann.info"], ["name", "Winston Hyatt"], ["password_hash", "db9c67b96d1f4cfe30e9084cc8348ce4"], ["updated_at", "2015-01-14 00:58:44.434571"], ["username", "f0b49a7f1db87eebfc8af366ed678310"]]
25640
+  (0.7ms) commit transaction
25641
+  (0.0ms) begin transaction
25642
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.436518"], ["email", "christian@emmerichpagac.info"], ["name", "Patrick Welch"], ["password_hash", "dc5408969f0fc98c56c228fb15c4594b"], ["updated_at", "2015-01-14 00:58:44.436518"], ["username", "12e2f73a2bf603a6e94b07739bac5b91"]]
25643
+  (0.7ms) commit transaction
25644
+  (0.0ms) begin transaction
25645
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.438441"], ["email", "jasmin_stanton@quitzonfeil.org"], ["name", "Therese Schroeder"], ["password_hash", "47cc73fcf4abcfcf6119e1fa7b19fee1"], ["updated_at", "2015-01-14 00:58:44.438441"], ["username", "38496a751cd042016998654aabf3c3ff"]]
25646
+  (0.8ms) commit transaction
25647
+  (0.0ms) begin transaction
25648
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.440529"], ["email", "kennedi_wilkinson@champlin.info"], ["name", "Nyah Buckridge PhD"], ["password_hash", "6b1c4d8443142b717d10e634ed543e57"], ["updated_at", "2015-01-14 00:58:44.440529"], ["username", "0510d4bfe8b6aef1cdd1b97d13ad0736"]]
25649
+  (0.6ms) commit transaction
25650
+  (0.0ms) begin transaction
25651
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.442404"], ["email", "haylie.weinat@wolff.com"], ["name", "Rasheed Stanton"], ["password_hash", "f31465c92246b1264beca485a59451ce"], ["updated_at", "2015-01-14 00:58:44.442404"], ["username", "c1d16c5f3c35ddc64fb598d83d9a4637"]]
25652
+  (0.7ms) commit transaction
25653
+  (0.0ms) begin transaction
25654
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.444355"], ["email", "diego.kub@thielruel.info"], ["name", "Velva Hane"], ["password_hash", "dac897153333d1fd1d511a21b9ddf5c2"], ["updated_at", "2015-01-14 00:58:44.444355"], ["username", "b48b2f1a3fab16d2abe5fc265c9bebec"]]
25655
+  (0.7ms) commit transaction
25656
+  (0.0ms) begin transaction
25657
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.446324"], ["email", "te@jacobs.org"], ["name", "Mrs. Joanie Wiza"], ["password_hash", "b46c5d7bdadc804e5a7793f550e1014f"], ["updated_at", "2015-01-14 00:58:44.446324"], ["username", "50f8f017c4ccb06f7b305698a947ad43"]]
25658
+  (0.7ms) commit transaction
25659
+  (0.0ms) begin transaction
25660
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.448244"], ["email", "roger.huel@smithchristiansen.net"], ["name", "Maximilian Mosciski"], ["password_hash", "642af1ab37390f9842ea1d5f5493ebd3"], ["updated_at", "2015-01-14 00:58:44.448244"], ["username", "00e369a3958eca3f9138578cdcf59240"]]
25661
+  (0.7ms) commit transaction
25662
+  (0.0ms) begin transaction
25663
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.450171"], ["email", "rosalee.schmeler@heaney.net"], ["name", "Gerald Friesen"], ["password_hash", "80ae7bbb4013ddb5b5b0fb714ee81ad9"], ["updated_at", "2015-01-14 00:58:44.450171"], ["username", "09db6225f924b6ccd2dfada8313d24b5"]]
25664
+  (0.7ms) commit transaction
25665
+  (0.0ms) begin transaction
25666
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.452127"], ["email", "raymundo@lakin.org"], ["name", "Orville Conn"], ["password_hash", "25eb843acbc8e585024ec023f39bfd17"], ["updated_at", "2015-01-14 00:58:44.452127"], ["username", "7d8cfc5ae938280bdfbf1b36a8f84bf1"]]
25667
+  (0.7ms) commit transaction
25668
+  (0.0ms) begin transaction
25669
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.454074"], ["email", "dortha_mueller@hyattgorczany.com"], ["name", "Jefferey Runolfsson"], ["password_hash", "3cbef1c718ecc6d684511222cbc05d5e"], ["updated_at", "2015-01-14 00:58:44.454074"], ["username", "447afd9d26f39b7b27e4724e1379ca1b"]]
25670
+  (0.7ms) commit transaction
25671
+  (0.0ms) begin transaction
25672
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.456093"], ["email", "rosetta@moriette.name"], ["name", "Jacques Hagenes"], ["password_hash", "1204ac8638cfd9c0b52b1ebb37a716c8"], ["updated_at", "2015-01-14 00:58:44.456093"], ["username", "34f7c24fdcc1edf19c43b6b578a2a485"]]
25673
+  (0.7ms) commit transaction
25674
+  (0.0ms) begin transaction
25675
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.457993"], ["email", "krystal_jerde@hahn.name"], ["name", "Zackery Schimmel"], ["password_hash", "54c6f902e4a31b2ecc201c6b60849b13"], ["updated_at", "2015-01-14 00:58:44.457993"], ["username", "48b85ac84e40a4fc8e5c1eeeb750a166"]]
25676
+  (0.7ms) commit transaction
25677
+  (0.0ms) begin transaction
25678
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.459935"], ["email", "paige@reinger.com"], ["name", "Waino Gislason"], ["password_hash", "15da128de243e1baebeb5d05cad3e73c"], ["updated_at", "2015-01-14 00:58:44.459935"], ["username", "4d926b3f801bc216e6c54619b2b9fb76"]]
25679
+  (0.6ms) commit transaction
25680
+  (0.0ms) begin transaction
25681
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.461784"], ["email", "rae.armstrong@trantow.com"], ["name", "Rylee Wolff"], ["password_hash", "67e44656b331236af5564293d7718a55"], ["updated_at", "2015-01-14 00:58:44.461784"], ["username", "2ad0199c1eaf41417b253e262443c864"]]
25682
+  (0.7ms) commit transaction
25683
+  (0.0ms) begin transaction
25684
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.463809"], ["email", "reymundo_weinat@rodriguez.biz"], ["name", "Mr. Dessie Kirlin"], ["password_hash", "adbbd9555d428eb62f219cae81663908"], ["updated_at", "2015-01-14 00:58:44.463809"], ["username", "16cea540ce16b9b7e662198db49680fe"]]
25685
+  (0.7ms) commit transaction
25686
+  (0.0ms) begin transaction
25687
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.465810"], ["email", "kieran@heaney.biz"], ["name", "Mr. Jamir Altenwerth"], ["password_hash", "c247a35b9390e9ed8f5f89428dd1327c"], ["updated_at", "2015-01-14 00:58:44.465810"], ["username", "92dbdd83aaf82554911dc3072bc42e0e"]]
25688
+  (0.7ms) commit transaction
25689
+  (0.0ms) begin transaction
25690
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.467718"], ["email", "merlin_zulauf@towne.biz"], ["name", "Jermain Reinger"], ["password_hash", "39127d38e3d0b19d20b365681a215f87"], ["updated_at", "2015-01-14 00:58:44.467718"], ["username", "3b32e5e4d303c6fff4e2d71dde78ca8c"]]
25691
+  (0.7ms) commit transaction
25692
+  (0.0ms) begin transaction
25693
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.469643"], ["email", "maria_jenkins@kovacekwuckert.name"], ["name", "Maria Stamm"], ["password_hash", "b5a7075e174c587def8737a006dc5584"], ["updated_at", "2015-01-14 00:58:44.469643"], ["username", "4cba34581b8f6a621536f3ccc61a6099"]]
25694
+  (0.7ms) commit transaction
25695
+  (0.0ms) begin transaction
25696
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.471562"], ["email", "marquis_monahan@fisherlynch.biz"], ["name", "Elyse Herzog"], ["password_hash", "832eaf8fa2287525a30b31f1753f8133"], ["updated_at", "2015-01-14 00:58:44.471562"], ["username", "3250236d1194156029e5754fbda9c970"]]
25697
+  (0.6ms) commit transaction
25698
+  (0.0ms) begin transaction
25699
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.473482"], ["email", "treva_breitenberg@boehmbednar.info"], ["name", "Keenan Renner"], ["password_hash", "8db3f820db8412ce17a066d9a97e12c3"], ["updated_at", "2015-01-14 00:58:44.473482"], ["username", "58e24b145cda756b4d58bb672c9b1701"]]
25700
+  (0.7ms) commit transaction
25701
+  (0.0ms) begin transaction
25702
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.475459"], ["email", "sydnee@parker.info"], ["name", "Alexis Koelpin V"], ["password_hash", "906046864579d4d291cc00aa42c5f5fc"], ["updated_at", "2015-01-14 00:58:44.475459"], ["username", "a27bd09759da5f9c33247a030986b577"]]
25703
+  (0.7ms) commit transaction
25704
+  (0.0ms) begin transaction
25705
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.477321"], ["email", "keenan@collinsgrant.net"], ["name", "Darwin Haley"], ["password_hash", "12c172a34a5dada17e6bcfee52c34e0c"], ["updated_at", "2015-01-14 00:58:44.477321"], ["username", "46e0d6df6b70b1dc792aa4cffa96cdbf"]]
25706
+  (0.8ms) commit transaction
25707
+  (0.0ms) begin transaction
25708
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.479291"], ["email", "haven@bernier.com"], ["name", "Derek O'Reilly"], ["password_hash", "7dfbaea6546bf20e6316e9b39b635aff"], ["updated_at", "2015-01-14 00:58:44.479291"], ["username", "9470dbc89da380b0fc9edb524eb7de2e"]]
25709
+  (0.7ms) commit transaction
25710
+  (0.0ms) begin transaction
25711
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.481165"], ["email", "jaeden@emard.info"], ["name", "Miss Henri Wunsch"], ["password_hash", "d160d73061148cef4889d6cb0ae9201b"], ["updated_at", "2015-01-14 00:58:44.481165"], ["username", "db9bef3cee86f04c926ac225d6c3524e"]]
25712
+  (0.7ms) commit transaction
25713
+  (0.0ms) begin transaction
25714
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.483055"], ["email", "shawna.hand@will.com"], ["name", "Jarod Jacobson"], ["password_hash", "140a30b251ef1b887bbec2cc9ce1644a"], ["updated_at", "2015-01-14 00:58:44.483055"], ["username", "e2273458bf9e0b237fccd32dd2d4bee6"]]
25715
+  (0.6ms) commit transaction
25716
+  (0.0ms) begin transaction
25717
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.484866"], ["email", "mable@howell.org"], ["name", "Pearl Wolff"], ["password_hash", "74c6672326b788e57660c60970d88a5f"], ["updated_at", "2015-01-14 00:58:44.484866"], ["username", "c6cd0b7b36fb49b2e1c6ffbdfc8d9d63"]]
25718
+  (0.7ms) commit transaction
25719
+  (0.0ms) begin transaction
25720
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.487085"], ["email", "linnie.stroman@windler.net"], ["name", "Miss Rosalinda Pouros"], ["password_hash", "732ff8b30de53088aed867298bb70b27"], ["updated_at", "2015-01-14 00:58:44.487085"], ["username", "ba37d61db7094107b2fbdf94b2aefe40"]]
25721
+  (0.7ms) commit transaction
25722
+  (0.0ms) begin transaction
25723
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.488926"], ["email", "kelli@leschjacobson.info"], ["name", "Rachael Kreiger"], ["password_hash", "c1b2cc1a29ea030550159535efbef35f"], ["updated_at", "2015-01-14 00:58:44.488926"], ["username", "7c3d50a415506113046b8f916704d99e"]]
25724
+  (0.7ms) commit transaction
25725
+  (0.1ms) begin transaction
25726
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.490904"], ["email", "letha.skiles@eichmannjakubowski.biz"], ["name", "Fern Kuhic Sr."], ["password_hash", "53e223d869c00eb55608d3b89cc57124"], ["updated_at", "2015-01-14 00:58:44.490904"], ["username", "73d7fb4d08c86365949d3197ca28c211"]]
25727
+  (0.7ms) commit transaction
25728
+  (0.0ms) begin transaction
25729
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.492861"], ["email", "gabrielle@kub.org"], ["name", "Albert Torp MD"], ["password_hash", "dddd054fbdd38432642d6d852a1821d7"], ["updated_at", "2015-01-14 00:58:44.492861"], ["username", "3e7b2694c672725738d2765e5a1d5420"]]
25730
+  (0.7ms) commit transaction
25731
+  (0.0ms) begin transaction
25732
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.494768"], ["email", "luis@cormierbashirian.net"], ["name", "Caleigh Gibson"], ["password_hash", "47ee9219a5e5201b7c5972059b4c3486"], ["updated_at", "2015-01-14 00:58:44.494768"], ["username", "79404094ea488d1314f5c62fdecd2deb"]]
25733
+  (0.7ms) commit transaction
25734
+  (0.1ms) begin transaction
25735
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.496728"], ["email", "wilford@grahambashirian.net"], ["name", "Alysson Sipes"], ["password_hash", "ad5d369c990f44482cb604ef746dc57c"], ["updated_at", "2015-01-14 00:58:44.496728"], ["username", "8f4bc2344df3bac25e9b0325a3e37b28"]]
25736
+  (0.7ms) commit transaction
25737
+  (0.0ms) begin transaction
25738
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.498658"], ["email", "estefania@kilback.name"], ["name", "Mrs. Walton Maggio"], ["password_hash", "c4696689204fd409ba4c5678ad8a88b2"], ["updated_at", "2015-01-14 00:58:44.498658"], ["username", "4304ae0253ba8a853e242bc1b11e4af9"]]
25739
+  (0.7ms) commit transaction
25740
+  (0.0ms) begin transaction
25741
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.500522"], ["email", "tatum_braun@huels.com"], ["name", "Dagmar Vandervort"], ["password_hash", "2244fb9a40157f592b730f2c54751994"], ["updated_at", "2015-01-14 00:58:44.500522"], ["username", "62a070c655df34eff924bf6370555513"]]
25742
+  (0.7ms) commit transaction
25743
+  (0.0ms) begin transaction
25744
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.502405"], ["email", "jedediah@westlang.com"], ["name", "Estel Jones"], ["password_hash", "0d514e56f0501818cbe76ff554d26e5e"], ["updated_at", "2015-01-14 00:58:44.502405"], ["username", "3c830955d3aaac1c7b899118ddb344c6"]]
25745
+  (0.7ms) commit transaction
25746
+  (0.0ms) begin transaction
25747
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.504343"], ["email", "jed_monahan@schulisttowne.com"], ["name", "Elias Hyatt III"], ["password_hash", "1c746225c34c21c975a3190005d5797a"], ["updated_at", "2015-01-14 00:58:44.504343"], ["username", "0b6d2aa0dcace8ed885abb4520c20ed6"]]
25748
+  (0.7ms) commit transaction
25749
+  (0.0ms) begin transaction
25750
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.506243"], ["email", "ashlee@frami.info"], ["name", "Abelardo Marquardt"], ["password_hash", "afcef24a890faf881b7af365ca552b84"], ["updated_at", "2015-01-14 00:58:44.506243"], ["username", "1b07dd834d9870f7dadc13aae9f6a243"]]
25751
+  (0.7ms) commit transaction
25752
+  (0.0ms) begin transaction
25753
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.508251"], ["email", "osvaldo@macgyver.net"], ["name", "Durward Lemke"], ["password_hash", "5e19b0ee29bd0524b8dbb5d4e4c4f496"], ["updated_at", "2015-01-14 00:58:44.508251"], ["username", "f9116e5d3e0c97c48673562f878d4125"]]
25754
+  (0.6ms) commit transaction
25755
+  (0.0ms) begin transaction
25756
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.510047"], ["email", "jey@hilpertlittel.info"], ["name", "Miss Bud Mohr"], ["password_hash", "450dc828f9beb74d8a1ad720f4dd1b26"], ["updated_at", "2015-01-14 00:58:44.510047"], ["username", "73486d52486895a0bb1bdc43fa3724f4"]]
25757
+  (0.7ms) commit transaction
25758
+  (0.0ms) begin transaction
25759
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.511854"], ["email", "friedrich.goodwin@bartoletti.name"], ["name", "Myriam Olson"], ["password_hash", "9af5295f1d57408446562f569ea46686"], ["updated_at", "2015-01-14 00:58:44.511854"], ["username", "3c51d44bb44b173afa044fbe758bab1d"]]
25760
+  (0.7ms) commit transaction
25761
+  (0.0ms) begin transaction
25762
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.513579"], ["email", "thaddeus@gerhold.org"], ["name", "Lori Gorczany"], ["password_hash", "b853ab3f8f55ace89028357957c336c1"], ["updated_at", "2015-01-14 00:58:44.513579"], ["username", "7a6907211d530783d60f3d68aaed5945"]]
25763
+  (0.6ms) commit transaction
25764
+  (0.0ms) begin transaction
25765
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.515417"], ["email", "kasey.ankunding@swaniawski.org"], ["name", "Dr. Rosa Cremin"], ["password_hash", "6101b11487e8ff5744a037293a03d6b5"], ["updated_at", "2015-01-14 00:58:44.515417"], ["username", "a0e69eeaa922204b4b5bc617021bd593"]]
25766
+  (0.7ms) commit transaction
25767
+  (0.0ms) begin transaction
25768
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.517327"], ["email", "savannah.simonis@reichelvon.net"], ["name", "Yoshiko Abshire"], ["password_hash", "c275e9777008d37854347b69dbd02bc6"], ["updated_at", "2015-01-14 00:58:44.517327"], ["username", "31eb46cc05e0fb24c01a3303486bba5e"]]
25769
+  (0.6ms) commit transaction
25770
+  (0.0ms) begin transaction
25771
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.519198"], ["email", "janelle@reinger.biz"], ["name", "Keenan Rutherford MD"], ["password_hash", "53e7e892bbcfba5e1cd44caaf76c2bcd"], ["updated_at", "2015-01-14 00:58:44.519198"], ["username", "a2031b2da7b99194fb39b4e772050853"]]
25772
+  (0.5ms) commit transaction
25773
+  (0.0ms) begin transaction
25774
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.520891"], ["email", "lois@kuvalis.org"], ["name", "Leda Huels"], ["password_hash", "77fbe5409b23ac82e9c3167986862c4b"], ["updated_at", "2015-01-14 00:58:44.520891"], ["username", "92136c800638cacbfb7cf03f9df59bd6"]]
25775
+  (0.6ms) commit transaction
25776
+  (0.0ms) begin transaction
25777
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.522674"], ["email", "candelario@beer.org"], ["name", "Lamont McKenzie"], ["password_hash", "1df121ef5b94dc3eed3bb9512687603f"], ["updated_at", "2015-01-14 00:58:44.522674"], ["username", "3eb82b51f552055725485c78f8205721"]]
25778
+  (0.7ms) commit transaction
25779
+  (0.0ms) begin transaction
25780
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.524669"], ["email", "delfina.rippin@hoeger.com"], ["name", "Alford Cremin"], ["password_hash", "26b04e558b5929ca917ea29aa80d5d5a"], ["updated_at", "2015-01-14 00:58:44.524669"], ["username", "62fc3e3379f283a5e92f757993800a88"]]
25781
+  (0.7ms) commit transaction
25782
+  (0.0ms) begin transaction
25783
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.526647"], ["email", "laney.hackett@orn.org"], ["name", "Dr. Ole Anderson"], ["password_hash", "b939f4779f499e745ddd39eb0b5ff138"], ["updated_at", "2015-01-14 00:58:44.526647"], ["username", "6e49f9a74d60c2788936e3031a781a6a"]]
25784
+  (0.7ms) commit transaction
25785
+  (0.0ms) begin transaction
25786
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.528581"], ["email", "eda.ortiz@vonruedenemard.org"], ["name", "Dawn Schuppe"], ["password_hash", "bf0f48da784d19bd6987ea9e5a9bd6ad"], ["updated_at", "2015-01-14 00:58:44.528581"], ["username", "928b2940d954d6f893c5e346919b9139"]]
25787
+  (0.7ms) commit transaction
25788
+  (0.1ms) begin transaction
25789
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.530655"], ["email", "sage_bode@kilbacklehner.biz"], ["name", "Austyn Quitzon"], ["password_hash", "efda11c3019fc5372c6f609bac9963cb"], ["updated_at", "2015-01-14 00:58:44.530655"], ["username", "0aa6fc0ec35e16e3af22f3a718c5dd1b"]]
25790
+  (0.8ms) commit transaction
25791
+  (0.0ms) begin transaction
25792
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.532625"], ["email", "uriah@gusikowski.info"], ["name", "Gregory Quigley III"], ["password_hash", "bef291808030ed93d20b3f1ea8d2a013"], ["updated_at", "2015-01-14 00:58:44.532625"], ["username", "4963c0817f3d1d8496ac85d70e39d85c"]]
25793
+  (0.7ms) commit transaction
25794
+  (0.0ms) begin transaction
25795
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.534468"], ["email", "gennaro_fahey@ullrich.name"], ["name", "Patsy Jast"], ["password_hash", "76fd73ce2e77ec244e46971bc4f46b1c"], ["updated_at", "2015-01-14 00:58:44.534468"], ["username", "629cb19af688b9d42e8f70d0a41a3a29"]]
25796
+  (0.7ms) commit transaction
25797
+  (0.0ms) begin transaction
25798
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.536328"], ["email", "alec@ritchieschimmel.info"], ["name", "Karelle Kunde"], ["password_hash", "d577c6e3c7c81baf21a8fdd11f92a01b"], ["updated_at", "2015-01-14 00:58:44.536328"], ["username", "5def25ce68a9e9bdef1ee7d5f5a25834"]]
25799
+  (0.7ms) commit transaction
25800
+  (0.0ms) begin transaction
25801
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.538164"], ["email", "aida@altenwerthkihn.info"], ["name", "Emerson Kiehn"], ["password_hash", "61f81f8022548bd89eb44ef07fe8a40b"], ["updated_at", "2015-01-14 00:58:44.538164"], ["username", "821346eaea0cf9806e61326021e6c426"]]
25802
+  (0.7ms) commit transaction
25803
+  (0.0ms) begin transaction
25804
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.540061"], ["email", "filiberto.oreilly@goldner.org"], ["name", "Travis Leffler"], ["password_hash", "44b630950ec3cfd51b7fdb1814e3ffb4"], ["updated_at", "2015-01-14 00:58:44.540061"], ["username", "6c59c98a6d6487c93a965e7e9414f979"]]
25805
+  (0.7ms) commit transaction
25806
+  (0.0ms) begin transaction
25807
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.541952"], ["email", "johathan@jaskolskikilback.net"], ["name", "Dr. Nella Cummerata"], ["password_hash", "5c08546ce92ea3165b7cb3e34764608c"], ["updated_at", "2015-01-14 00:58:44.541952"], ["username", "220acfd3b442671c5c437ff20f9d57db"]]
25808
+  (0.7ms) commit transaction
25809
+  (0.0ms) begin transaction
25810
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.543771"], ["email", "johnson@thompsondooley.org"], ["name", "Dewayne D'Amore"], ["password_hash", "0b1f80d5521d1e4ad653bcb1275d7692"], ["updated_at", "2015-01-14 00:58:44.543771"], ["username", "3f8753a3441b4e607d56b818938ee30f"]]
25811
+  (0.7ms) commit transaction
25812
+  (0.1ms) begin transaction
25813
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.545680"], ["email", "bridgette_reichel@bashirian.biz"], ["name", "Otho Emmerich"], ["password_hash", "55423a456933824c50f34e8db08187fa"], ["updated_at", "2015-01-14 00:58:44.545680"], ["username", "0986a52044cd3dffbc80d49b819ef0d1"]]
25814
+  (0.7ms) commit transaction
25815
+  (0.0ms) begin transaction
25816
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.547652"], ["email", "andreanne.kunde@corkery.name"], ["name", "Maximus Zieme PhD"], ["password_hash", "6b310078f7402e0e82934c096bf4ddd9"], ["updated_at", "2015-01-14 00:58:44.547652"], ["username", "22a271b7f343bb176f45b19e535ef8ed"]]
25817
+  (0.7ms) commit transaction
25818
+  (0.0ms) begin transaction
25819
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.549546"], ["email", "dulce@torphy.name"], ["name", "Layla Gerlach"], ["password_hash", "4cc2bc1a7daaa2995ef0d5334df2719c"], ["updated_at", "2015-01-14 00:58:44.549546"], ["username", "2ec8f8cce707f7f56f76161e9a4f22f6"]]
25820
+  (0.8ms) commit transaction
25821
+  (0.0ms) begin transaction
25822
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.551558"], ["email", "arvid@jastschmidt.org"], ["name", "Dillan Swaniawski"], ["password_hash", "5c6e64e76406db0affecb49e44ed897b"], ["updated_at", "2015-01-14 00:58:44.551558"], ["username", "86b513b4fe1ab9945943323b11996581"]]
25823
+  (0.6ms) commit transaction
25824
+  (0.0ms) begin transaction
25825
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.553240"], ["email", "forrest.von@waelchi.net"], ["name", "Kariane Erdman DDS"], ["password_hash", "d565cf8fef42ff25db591403dea732ff"], ["updated_at", "2015-01-14 00:58:44.553240"], ["username", "4f019ec9e2f9a3e9c46cb73abb85ef98"]]
25826
+  (0.7ms) commit transaction
25827
+  (0.0ms) begin transaction
25828
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.555043"], ["email", "bernardo@windler.com"], ["name", "Lolita Mills"], ["password_hash", "f08daf87d08cc1aa8633ac1d85b741ed"], ["updated_at", "2015-01-14 00:58:44.555043"], ["username", "6e5acd4c9069fd0071eb78e5b8c8a02f"]]
25829
+  (0.7ms) commit transaction
25830
+  (0.0ms) begin transaction
25831
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.556923"], ["email", "lukas_torp@bogisich.com"], ["name", "Adrien Kerluke"], ["password_hash", "492389c2c4a85680280f589d8498bd41"], ["updated_at", "2015-01-14 00:58:44.556923"], ["username", "fd0c488f1d8bf5061175a22a88fc5e47"]]
25832
+  (0.7ms) commit transaction
25833
+  (0.0ms) begin transaction
25834
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.558802"], ["email", "candace_oconnell@mosciski.info"], ["name", "Dr. Gracie Howell"], ["password_hash", "97a808a88db1dea300224a89983f7712"], ["updated_at", "2015-01-14 00:58:44.558802"], ["username", "70a89ff7d29c7646782df8a89a428332"]]
25835
+  (0.7ms) commit transaction
25836
+  (0.0ms) begin transaction
25837
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.560793"], ["email", "scarlett@littelparker.biz"], ["name", "Claudie Grady Sr."], ["password_hash", "bfa752c24196306ba8479387fe6b2926"], ["updated_at", "2015-01-14 00:58:44.560793"], ["username", "647fc0ca04f2fda53d3f91ce676f65e5"]]
25838
+  (0.8ms) commit transaction
25839
+  (0.0ms) begin transaction
25840
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.562776"], ["email", "axel@becker.info"], ["name", "Jadyn Nolan"], ["password_hash", "0bf6568c67dc22e4201dd6ccc03f2562"], ["updated_at", "2015-01-14 00:58:44.562776"], ["username", "6eeac96037ab4fe46cec59eb5a014b12"]]
25841
+  (0.6ms) commit transaction
25842
+  (0.0ms) begin transaction
25843
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.564466"], ["email", "braxton@stracke.net"], ["name", "Kelsi Dickinson"], ["password_hash", "a6c88d714117bbdbe4d869803c449618"], ["updated_at", "2015-01-14 00:58:44.564466"], ["username", "a969af62de16393c58e26f7ec9096961"]]
25844
+  (0.7ms) commit transaction
25845
+  (0.0ms) begin transaction
25846
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.566342"], ["email", "roie_parisian@wunschhammes.net"], ["name", "Estell Wolff"], ["password_hash", "8459b7a984fe96a6e1a9d18733d54238"], ["updated_at", "2015-01-14 00:58:44.566342"], ["username", "6c4956b3af380ee2192744d2d7af8efe"]]
25847
+  (0.7ms) commit transaction
25848
+  (0.0ms) begin transaction
25849
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.568313"], ["email", "rory_gottlieb@kling.com"], ["name", "Kiley Gorczany"], ["password_hash", "50ad1deb47880c5ad3c7ce0f89980fcd"], ["updated_at", "2015-01-14 00:58:44.568313"], ["username", "3e0711160abcb68f147c8bd6e6dc242b"]]
25850
+  (0.7ms) commit transaction
25851
+  (0.0ms) begin transaction
25852
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.570217"], ["email", "asia_hermiston@terry.name"], ["name", "Irma Cartwright"], ["password_hash", "0724b47a41e3a244c7420c6dc1848ebe"], ["updated_at", "2015-01-14 00:58:44.570217"], ["username", "41ffc7ca94ca86777c580fb2ad77594e"]]
25853
+  (0.9ms) commit transaction
25854
+  (0.0ms) begin transaction
25855
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.572277"], ["email", "allan.schimmel@hintz.org"], ["name", "Okey Nikolaus"], ["password_hash", "c9970e9dce0b0ce01c190d8600b0ae16"], ["updated_at", "2015-01-14 00:58:44.572277"], ["username", "692d4e4af4f960502846900814afcd10"]]
25856
+  (1.0ms) commit transaction
25857
+  (0.0ms) begin transaction
25858
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.574672"], ["email", "valerie@morarkeebler.net"], ["name", "Mr. Delfina Sawayn"], ["password_hash", "981bd36fbd2a411c44235486313f9131"], ["updated_at", "2015-01-14 00:58:44.574672"], ["username", "187fcab0cc33037cef45e90370be294b"]]
25859
+  (0.6ms) commit transaction
25860
+  (0.0ms) begin transaction
25861
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.576456"], ["email", "murray_koch@schmitt.info"], ["name", "Ryder Johnson I"], ["password_hash", "8fdc50cff7432c8c8d4740d33c8c8ddc"], ["updated_at", "2015-01-14 00:58:44.576456"], ["username", "f000d1c0b417c7dbc8be27747685c3f4"]]
25862
+  (0.6ms) commit transaction
25863
+  (0.0ms) begin transaction
25864
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.578203"], ["email", "angela@oberbrunnerhauck.com"], ["name", "Blaise Kshlerin"], ["password_hash", "d2a4f62e897738dc13df37bb9d2670ce"], ["updated_at", "2015-01-14 00:58:44.578203"], ["username", "16a4f0bc46f461801656322f3feb0e8a"]]
25865
+  (0.7ms) commit transaction
25866
+  (0.0ms) begin transaction
25867
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.580108"], ["email", "lilliana@zemlak.biz"], ["name", "Dr. Hal Swaniawski"], ["password_hash", "f61ea416cae041b24e21769f5d423308"], ["updated_at", "2015-01-14 00:58:44.580108"], ["username", "4941716f5d548d36d8f8f404472ddf02"]]
25868
+  (0.6ms) commit transaction
25869
+  (0.0ms) begin transaction
25870
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.581826"], ["email", "julia@boyle.org"], ["name", "Dennis Harber"], ["password_hash", "66468d2fef9ae419fd014c8b8ecf10e6"], ["updated_at", "2015-01-14 00:58:44.581826"], ["username", "0a98dc1b95edc7e36e3b9759ad5e376c"]]
25871
+  (0.7ms) commit transaction
25872
+  (0.0ms) begin transaction
25873
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.583650"], ["email", "michel@lesch.com"], ["name", "Paul Cummerata"], ["password_hash", "a1c8b0a69fca71594a7487d1e9f72a5c"], ["updated_at", "2015-01-14 00:58:44.583650"], ["username", "45ae5eabeefb3c90692a929fdf4503a2"]]
25874
+  (0.6ms) commit transaction
25875
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."name" LIKE '% doe%'
25876
+  (0.0ms) begin transaction
25877
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.586679"], ["email", "john@doe.com"], ["name", "John Doe"], ["password_hash", "f434d42786151da792546ea214bd0e66"], ["updated_at", "2015-01-14 00:58:44.586679"], ["username", "doejohn"]]
25878
+  (0.7ms) commit transaction
25879
+  (0.0ms) begin transaction
25880
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.588436"], ["email", "jane@doe.com"], ["name", "Jane Doe"], ["password_hash", "f1ddeee11a763679cd4c7dd21ff0c734"], ["updated_at", "2015-01-14 00:58:44.588436"], ["username", "doejane"]]
25881
+  (0.7ms) commit transaction
25882
+  (0.0ms) begin transaction
25883
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 00:58:44.590139"], ["email", "jack@doe.com"], ["name", "Jack Doe"], ["password_hash", "9fb4b307c59eb5307385b2557532ca9b"], ["updated_at", "2015-01-14 00:58:44.590139"], ["username", "doejack"]]
25884
+  (0.7ms) commit transaction
25885
+  (0.1ms) SELECT COUNT(*) FROM "users"
25886
+  (1.5ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
25887
+  (0.1ms) select sqlite_version(*)
25888
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
25889
+  (0.7ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
25890
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
25891
+  (0.1ms) SELECT sql
25892
+ FROM sqlite_master
25893
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25894
+ UNION ALL
25895
+ SELECT sql
25896
+ FROM sqlite_temp_master
25897
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25898
+
25899
+  (0.7ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
25900
+  (0.1ms) SELECT sql
25901
+ FROM sqlite_master
25902
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25903
+ UNION ALL
25904
+ SELECT sql
25905
+ FROM sqlite_temp_master
25906
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
25907
+
25908
+  (0.1ms)  SELECT sql
25909
+ FROM sqlite_master
25910
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25911
+ UNION ALL
25912
+ SELECT sql
25913
+ FROM sqlite_temp_master
25914
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
25915
+ 
25916
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
25917
+  (0.7ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
25918
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
25919
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
25920
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
25921
+  (0.1ms)  SELECT sql
25922
+ FROM sqlite_master
25923
+ WHERE name='index_users_on_email' AND type='index'
25924
+ UNION ALL
25925
+ SELECT sql
25926
+ FROM sqlite_temp_master
25927
+ WHERE name='index_users_on_email' AND type='index'
25928
+ 
25929
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
25930
+  (0.1ms)  SELECT sql
25931
+ FROM sqlite_master
25932
+ WHERE name='index_users_on_name' AND type='index'
25933
+ UNION ALL
25934
+ SELECT sql
25935
+ FROM sqlite_temp_master
25936
+ WHERE name='index_users_on_name' AND type='index'
25937
+ 
25938
+  (0.1ms) SELECT sql
25939
+ FROM sqlite_master
25940
+ WHERE name='index_users_on_email' AND type='index'
25941
+ UNION ALL
25942
+ SELECT sql
25943
+ FROM sqlite_temp_master
25944
+ WHERE name='index_users_on_email' AND type='index'
25945
+
25946
+  (0.7ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
25947
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
25948
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25949
+  (0.1ms) SELECT version FROM "schema_migrations"
25950
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
25951
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
25952
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25953
+  (0.1ms) begin transaction
25954
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.784363"], ["email", "judson_skiles@boyer.name"], ["name", "Katlyn McLaughlin"], ["password_hash", "e1583a3a61c7369a6b50fefe486ace12"], ["updated_at", "2015-01-14 01:04:58.784363"], ["username", "e37e6fe00f004168ab19eaed77db1e31"]]
25955
+  (1.3ms) commit transaction
25956
+  (0.1ms) begin transaction
25957
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.789838"], ["email", "rosemarie.muller@schimmelauer.biz"], ["name", "Dr. Hollie Cole"], ["password_hash", "b0972fe8cfce75eb3539f9f32c573f78"], ["updated_at", "2015-01-14 01:04:58.789838"], ["username", "3ba9337c4fce9a7e2dab5221e278c247"]]
25958
+  (0.7ms) commit transaction
25959
+  (0.1ms) begin transaction
25960
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.794318"], ["email", "kendrick@ebert.org"], ["name", "Estevan Smith Sr."], ["password_hash", "4288ea65c987a5e6a610292c1a72d28f"], ["updated_at", "2015-01-14 01:04:58.794318"], ["username", "536344d7b09f3c3fd0eaf58ca40222be"]]
25961
+  (0.7ms) commit transaction
25962
+  (0.0ms) begin transaction
25963
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.796395"], ["email", "sylvan_rau@quitzon.org"], ["name", "Jovan Botsford"], ["password_hash", "9430a46359fcf24b68314158c16dd8b0"], ["updated_at", "2015-01-14 01:04:58.796395"], ["username", "90ccd9fb0578c1b6bee9322623404234"]]
25964
+  (0.5ms) commit transaction
25965
+  (0.0ms) begin transaction
25966
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.799088"], ["email", "emmet_durgan@schneiderbeahan.biz"], ["name", "Zaria Konopelski"], ["password_hash", "08fe6b5b022724fcce49c2034ce9198b"], ["updated_at", "2015-01-14 01:04:58.799088"], ["username", "bf4f8d2ad1a3a8aac80f35a0b72d07ff"]]
25967
+  (0.8ms) commit transaction
25968
+  (0.0ms) begin transaction
25969
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.801183"], ["email", "narciso@gerhold.org"], ["name", "Nikita Howe"], ["password_hash", "c67d3a6a400cea6c924cb42309b3d53e"], ["updated_at", "2015-01-14 01:04:58.801183"], ["username", "fcef216954906fac8f2508677226958a"]]
25970
+  (0.7ms) commit transaction
25971
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
25972
+  (0.0ms) begin transaction
25973
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.814401"], ["email", "maudie.mraz@gorczany.biz"], ["name", "Marcelino Yundt"], ["password_hash", "cd27c3fdbc0bdd37eb40a23635ae7da0"], ["updated_at", "2015-01-14 01:04:58.814401"], ["username", "b237ccd4bca61f7db6579261dda792db"]]
25974
+  (0.7ms) commit transaction
25975
+  (0.0ms) begin transaction
25976
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.816762"], ["email", "therese.pfeffer@sengergusikowski.info"], ["name", "Leopoldo Halvorson"], ["password_hash", "b5aafc1b10022647304f1fcf5a55a684"], ["updated_at", "2015-01-14 01:04:58.816762"], ["username", "54ee7e79e874bbffe60ffc3ee0ecf91a"]]
25977
+  (0.7ms) commit transaction
25978
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
25979
+  (0.0ms) begin transaction
25980
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.820852"], ["email", "jaime.kemmer@howeprohaska.name"], ["name", "Gregory Stanton DVM"], ["password_hash", "4e3b8f7e9c7dbbd5d039212a89920360"], ["updated_at", "2015-01-14 01:04:58.820852"], ["username", "81275809420534c530b8ab4c6e67293e"]]
25981
+  (0.7ms) commit transaction
25982
+  (0.0ms) begin transaction
25983
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.823039"], ["email", "adelle_beer@schimmel.org"], ["name", "Graham Shanahan"], ["password_hash", "1a9c858230e9fa38641bb22ea0ab19a0"], ["updated_at", "2015-01-14 01:04:58.823039"], ["username", "ce5e9cdc6f1f35f7135255dce178314d"]]
25984
+  (0.7ms) commit transaction
25985
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 ORDER BY "users"."id" ASC LIMIT 1
25986
+  (0.1ms) begin transaction
25987
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.844222"], ["email", "dayton.gaylord@vonrueden.name"], ["name", "Miss Lurline Doyle"], ["password_hash", "bee2078c7c6ff7f5f2ea66e4c96a5b4e"], ["updated_at", "2015-01-14 01:04:58.844222"], ["username", "5bcb5b0a7e0dd2e86868d5dd9eb5859f"]]
25988
+  (0.7ms) commit transaction
25989
+  (0.1ms) begin transaction
25990
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.847085"], ["email", "amalia@okuneva.org"], ["name", "Jed Legros III"], ["password_hash", "df2e7f5746589bb1dc79d209ebbf01ba"], ["updated_at", "2015-01-14 01:04:58.847085"], ["username", "b32e57d163668143e4dcc2971d698cb3"]]
25991
+  (0.7ms) commit transaction
25992
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 12 ORDER BY "users"."id" ASC LIMIT 1
25993
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
25994
+  (0.0ms) begin transaction
25995
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.852738"], ["email", "rex.reynolds@dickensblock.net"], ["name", "Juanita Corwin"], ["password_hash", "60164e9c24109b452cc326a9095afbc4"], ["updated_at", "2015-01-14 01:04:58.852738"], ["username", "b2b491a725586ba31d8710e88a68bc74"]]
25996
+  (0.7ms) commit transaction
25997
+  (0.1ms) begin transaction
25998
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.855303"], ["email", "edwin.stracke@cummings.org"], ["name", "Brain Greenfelder"], ["password_hash", "f4556bb84b246319ce6db276446af964"], ["updated_at", "2015-01-14 01:04:58.855303"], ["username", "8971f985f3db3df9d488dc3e38721cb2"]]
25999
+  (0.7ms) commit transaction
26000
+  (0.0ms) begin transaction
26001
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.857709"], ["email", "derek@quigley.com"], ["name", "Jackson Luettgen"], ["password_hash", "898d4a91c6e1ee1e20e44e61155915b7"], ["updated_at", "2015-01-14 01:04:58.857709"], ["username", "86ab4a476412b9b4b3578614a0d70345"]]
26002
+  (0.7ms) commit transaction
26003
+  (0.0ms) begin transaction
26004
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.859621"], ["email", "nichole@keler.info"], ["name", "Florencio O'Hara"], ["password_hash", "067835d2cee599ef0706ec263a9f9613"], ["updated_at", "2015-01-14 01:04:58.859621"], ["username", "85ad476876a21cd3088ead7107e77245"]]
26005
+  (0.6ms) commit transaction
26006
+  (0.0ms) begin transaction
26007
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.861483"], ["email", "elinor_anderson@okunevagaylord.org"], ["name", "Jacquelyn Sipes"], ["password_hash", "36d4828deacc58bd6602deec8e28f748"], ["updated_at", "2015-01-14 01:04:58.861483"], ["username", "a1ac6b00d78c9fdb6e7f09e7522053e7"]]
26008
+  (0.6ms) commit transaction
26009
+  (0.0ms) begin transaction
26010
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.863344"], ["email", "gaylord.powlowski@schaden.name"], ["name", "Edmond Hermiston"], ["password_hash", "0a407ffcb0c4d15c347023de3b284b34"], ["updated_at", "2015-01-14 01:04:58.863344"], ["username", "45a13465fc7409d90c836bb35e249559"]]
26011
+  (0.7ms) commit transaction
26012
+  (0.0ms) begin transaction
26013
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.865260"], ["email", "louie@muellerbrekke.net"], ["name", "Winnifred Weimann"], ["password_hash", "452fa8725e6ee01a71eca3933128d9e9"], ["updated_at", "2015-01-14 01:04:58.865260"], ["username", "2da19e3cc2066e0ea1c075d18fcd6f0f"]]
26014
+  (0.8ms) commit transaction
26015
+  (0.0ms) begin transaction
26016
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.867873"], ["email", "deron_ziemann@raynor.biz"], ["name", "Leanna Bergnaum"], ["password_hash", "8f9fd8ef9494e28ca34e73b32ad87bd0"], ["updated_at", "2015-01-14 01:04:58.867873"], ["username", "6c94df85f1912a0568f409bbae2d3f7f"]]
26017
+  (0.5ms) commit transaction
26018
+  (0.0ms) begin transaction
26019
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.869707"], ["email", "ashleigh@sporer.org"], ["name", "Miller Gorczany"], ["password_hash", "4c751391e9c0e2294e9ac7aa62f9acd8"], ["updated_at", "2015-01-14 01:04:58.869707"], ["username", "c3090b8f6e27378bf0575751567170f6"]]
26020
+  (0.6ms) commit transaction
26021
+  (0.0ms) begin transaction
26022
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.871419"], ["email", "amira.brown@turner.net"], ["name", "Maurine Greenholt"], ["password_hash", "da65b0648a8f5fcba8566c8dcfcf6871"], ["updated_at", "2015-01-14 01:04:58.871419"], ["username", "83a9a375129117b45ec29f0c33bb68ec"]]
26023
+  (0.6ms) commit transaction
26024
+  (0.0ms) begin transaction
26025
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.873257"], ["email", "chaim_aufderhar@larkin.net"], ["name", "Dr. Bethel Zulauf"], ["password_hash", "0489e989d2ad4a6e22833da2738dc5c3"], ["updated_at", "2015-01-14 01:04:58.873257"], ["username", "71d43409a20244656f8a4e82d99fa050"]]
26026
+  (0.6ms) commit transaction
26027
+  (0.0ms) begin transaction
26028
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.874921"], ["email", "murphy.schumm@langoconnell.info"], ["name", "Ike Kuhlman"], ["password_hash", "760bdf62b97752fd24f87a488994d634"], ["updated_at", "2015-01-14 01:04:58.874921"], ["username", "75e927769b5430eb00e2639fb59aebf8"]]
26029
+  (0.6ms) commit transaction
26030
+  (0.0ms) begin transaction
26031
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.876643"], ["email", "maryjane.durgan@dach.net"], ["name", "Darwin Bruen MD"], ["password_hash", "05f908ebbc3dd819bcd322a2a57b15db"], ["updated_at", "2015-01-14 01:04:58.876643"], ["username", "0a18256de68f0eaf68d55f7cc76976a5"]]
26032
+  (0.6ms) commit transaction
26033
+  (0.0ms) begin transaction
26034
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.878421"], ["email", "gideon_krajcik@metzmetz.info"], ["name", "Clemmie Daugherty"], ["password_hash", "235ea09a21b7f77ebcf3ce28e877263d"], ["updated_at", "2015-01-14 01:04:58.878421"], ["username", "c43192299e4106de472be47201516526"]]
26035
+  (0.6ms) commit transaction
26036
+  (0.0ms) begin transaction
26037
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.880081"], ["email", "marcelo@windler.info"], ["name", "Teresa Howe"], ["password_hash", "ddc0e532c98786acaa1f4310a910cef7"], ["updated_at", "2015-01-14 01:04:58.880081"], ["username", "13e0139b9a218351bc9258d8499b3fb0"]]
26038
+  (0.6ms) commit transaction
26039
+  (0.0ms) begin transaction
26040
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.881769"], ["email", "ocie_pfannerstill@ernser.net"], ["name", "Haven Reinger"], ["password_hash", "947395c9f30a1e2e0fa612054770d21b"], ["updated_at", "2015-01-14 01:04:58.881769"], ["username", "d7ab78dce1bc1a25e9ed38fced904c07"]]
26041
+  (0.6ms) commit transaction
26042
+  (0.0ms) begin transaction
26043
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.883534"], ["email", "lisandro@trantow.com"], ["name", "Junior Volkman"], ["password_hash", "dc6e850af451eb9206fd0bddc5094ea2"], ["updated_at", "2015-01-14 01:04:58.883534"], ["username", "87872d34608b72f698710197bbf91549"]]
26044
+  (0.7ms) commit transaction
26045
+  (0.0ms) begin transaction
26046
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.885351"], ["email", "tanya.deckow@yundt.info"], ["name", "Aryanna Pagac I"], ["password_hash", "7a0a9666820d8e9f00b4c075fe19d19e"], ["updated_at", "2015-01-14 01:04:58.885351"], ["username", "0064fbd6e7c5efc04ff6d78283adb778"]]
26047
+  (0.6ms) commit transaction
26048
+  (0.0ms) begin transaction
26049
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.887058"], ["email", "bennie@hermanleuschke.name"], ["name", "Alicia Mante"], ["password_hash", "3419f295f1819e25d50f89287b249344"], ["updated_at", "2015-01-14 01:04:58.887058"], ["username", "2961d8f20d00bf290e22f5523ec0fd53"]]
26050
+  (0.7ms) commit transaction
26051
+  (0.0ms) begin transaction
26052
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.888861"], ["email", "joesph@johns.biz"], ["name", "Keshawn Beier"], ["password_hash", "f5b47c0af80146c03bcf2dbedfe038bf"], ["updated_at", "2015-01-14 01:04:58.888861"], ["username", "518499ecee9431c6fba096f1dfb707bb"]]
26053
+  (0.7ms) commit transaction
26054
+  (0.0ms) begin transaction
26055
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.890792"], ["email", "willow_bogisich@kreigerwisoky.com"], ["name", "Brenden Weissnat"], ["password_hash", "afd715a9c9a97eef2a3967ed0938ee4d"], ["updated_at", "2015-01-14 01:04:58.890792"], ["username", "761bf219b7f924c303b02fa12327b4f3"]]
26056
+  (0.7ms) commit transaction
26057
+  (0.0ms) begin transaction
26058
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.892631"], ["email", "chadd@yostklein.name"], ["name", "Myrtice Nader I"], ["password_hash", "f374c7e685e01f1d60c2c86862a5c873"], ["updated_at", "2015-01-14 01:04:58.892631"], ["username", "0c1c05839175447fe266ef581f9acdb2"]]
26059
+  (0.6ms) commit transaction
26060
+  (0.0ms) begin transaction
26061
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.894439"], ["email", "mariela.schmeler@leschhand.info"], ["name", "Sherwood Swift"], ["password_hash", "fd6383c400a75329d88725886e7891fc"], ["updated_at", "2015-01-14 01:04:58.894439"], ["username", "fd2a868fd885b689cab34e1bba499c75"]]
26062
+  (0.7ms) commit transaction
26063
+  (0.0ms) begin transaction
26064
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.896275"], ["email", "winona_heel@mcclureschmidt.net"], ["name", "Verna Dooley"], ["password_hash", "df26287bb4565538442e7d8ef1ccd945"], ["updated_at", "2015-01-14 01:04:58.896275"], ["username", "87e60d791df5e6d57c749a0469eca08c"]]
26065
+  (0.5ms) commit transaction
26066
+  (0.0ms) begin transaction
26067
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.898017"], ["email", "coby@mraz.name"], ["name", "Ciara Walter II"], ["password_hash", "eda0f6481a43ede42e4c14fbf0f8dbc3"], ["updated_at", "2015-01-14 01:04:58.898017"], ["username", "660fbbe8662b47195ef835397f762df9"]]
26068
+  (0.6ms) commit transaction
26069
+  (0.0ms) begin transaction
26070
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.899785"], ["email", "rickey.rau@schimmel.com"], ["name", "Winfield Harvey"], ["password_hash", "e81a78499d40b3e4d1ef2a944d2c7c78"], ["updated_at", "2015-01-14 01:04:58.899785"], ["username", "ba117bb6a36f9b6bdb87ccb3a4b0f117"]]
26071
+  (0.7ms) commit transaction
26072
+  (0.0ms) begin transaction
26073
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.901750"], ["email", "josiane.rolfson@kuhlmantowne.info"], ["name", "Monserrate Kemmer II"], ["password_hash", "71c3663df4be06867e70a5ae21390a2b"], ["updated_at", "2015-01-14 01:04:58.901750"], ["username", "67a92db9e3aad4cbe8a75d2fd9d52a9a"]]
26074
+  (0.7ms) commit transaction
26075
+  (0.0ms) begin transaction
26076
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.903720"], ["email", "nils.wilkinson@turcotteoconner.name"], ["name", "Jalon Moen"], ["password_hash", "76d107962427b8ac6af4bbf3187b5f55"], ["updated_at", "2015-01-14 01:04:58.903720"], ["username", "dfb76dd8c6a4622fc98fb45c31bf7a15"]]
26077
+  (0.7ms) commit transaction
26078
+  (0.0ms) begin transaction
26079
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.905662"], ["email", "dayna@creminhills.org"], ["name", "Julia Mertz"], ["password_hash", "2d2a9a50a5c1961f639aa0b91dc8cb9f"], ["updated_at", "2015-01-14 01:04:58.905662"], ["username", "a46f8c5241edf03c59412ac1777027ad"]]
26080
+  (0.6ms) commit transaction
26081
+  (0.0ms) begin transaction
26082
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.907499"], ["email", "cindy_pfeffer@kerluke.info"], ["name", "Gussie Conroy"], ["password_hash", "740752ffd735297918c97d2d37e1bb60"], ["updated_at", "2015-01-14 01:04:58.907499"], ["username", "b533b625a3815e11554008882e31e265"]]
26083
+  (0.6ms) commit transaction
26084
+  (0.0ms) begin transaction
26085
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.909338"], ["email", "cordell@bailey.info"], ["name", "Melyssa Runolfsson"], ["password_hash", "1cc14752b04f392b3d25300120f4a567"], ["updated_at", "2015-01-14 01:04:58.909338"], ["username", "7bac99f5da85c64469d811965d459ba0"]]
26086
+  (0.6ms) commit transaction
26087
+  (0.0ms) begin transaction
26088
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.911231"], ["email", "rodger_fahey@armstrongadams.biz"], ["name", "Madison Wunsch"], ["password_hash", "9ac8a2abfff837c032fa7837c1766267"], ["updated_at", "2015-01-14 01:04:58.911231"], ["username", "8f4b13e6a04b240050582e058969bcfa"]]
26089
+  (0.7ms) commit transaction
26090
+  (0.0ms) begin transaction
26091
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.913224"], ["email", "jackie.ratke@macgyver.net"], ["name", "Dr. Kelli Bailey"], ["password_hash", "8fac6219a19a97f907584fbeb59b5575"], ["updated_at", "2015-01-14 01:04:58.913224"], ["username", "e063a65d89d9f51fc9db6e0fddbc7eb6"]]
26092
+  (0.7ms) commit transaction
26093
+  (0.0ms) begin transaction
26094
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.915098"], ["email", "delphine@osinski.net"], ["name", "Sienna Gusikowski"], ["password_hash", "4a53d01788a67cc6d42af14f51db1a2f"], ["updated_at", "2015-01-14 01:04:58.915098"], ["username", "36270a602742b23f8aa7e0056e90da8a"]]
26095
+  (0.7ms) commit transaction
26096
+  (0.0ms) begin transaction
26097
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.916985"], ["email", "pierce@pouroswill.info"], ["name", "Kadin Schiller"], ["password_hash", "fa191d9c5b36a29bd3437ce330d7ba34"], ["updated_at", "2015-01-14 01:04:58.916985"], ["username", "2cfa41c53a02397cc17b953f73d5122c"]]
26098
+  (0.7ms) commit transaction
26099
+  (0.0ms) begin transaction
26100
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.918830"], ["email", "gracie.heaney@marvin.org"], ["name", "Clare Fahey"], ["password_hash", "af5db3035e018dd5516d3e41a0c5e851"], ["updated_at", "2015-01-14 01:04:58.918830"], ["username", "13e1b9fe678e5d635f9d3d389b468044"]]
26101
+  (0.7ms) commit transaction
26102
+  (0.1ms) begin transaction
26103
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.920914"], ["email", "danny_emmerich@leuschke.name"], ["name", "Damon Dare Sr."], ["password_hash", "3efb68a0ef23e4aaf1cf337f157cdad4"], ["updated_at", "2015-01-14 01:04:58.920914"], ["username", "5f64fb47f1c5e260603bcbbf81cbeda5"]]
26104
+  (0.7ms) commit transaction
26105
+  (0.0ms) begin transaction
26106
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.922811"], ["email", "eliza.boyer@paucek.net"], ["name", "Greyson Ondricka III"], ["password_hash", "6138d5ac6f53997d90d45bb5d8367970"], ["updated_at", "2015-01-14 01:04:58.922811"], ["username", "075552487b1589bccea95d1a4d958bc9"]]
26107
+  (0.7ms) commit transaction
26108
+  (0.0ms) begin transaction
26109
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.924728"], ["email", "cullen.hirthe@cormier.net"], ["name", "Mr. Delphine Satterfield"], ["password_hash", "f4e3297eee6d0c49aaab5855f326b0e4"], ["updated_at", "2015-01-14 01:04:58.924728"], ["username", "98289f8ad9c55ffa432c8d741b65d5c0"]]
26110
+  (0.7ms) commit transaction
26111
+  (0.0ms) begin transaction
26112
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.926602"], ["email", "jamel_koelpin@flatley.com"], ["name", "Sophie Jaskolski"], ["password_hash", "6bdcc78251f8f5e1153f58c6155eb369"], ["updated_at", "2015-01-14 01:04:58.926602"], ["username", "68047fb91c1b6ea3fb9e83b8ccb986a9"]]
26113
+  (0.7ms) commit transaction
26114
+  (0.0ms) begin transaction
26115
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.928545"], ["email", "laurine@smithdaugherty.com"], ["name", "Mina Koss Jr."], ["password_hash", "b7d468825df272c906a7e6f6b418429d"], ["updated_at", "2015-01-14 01:04:58.928545"], ["username", "5d9c1d7fbc2569465a126f9254abbb50"]]
26116
+  (0.7ms) commit transaction
26117
+  (0.1ms) begin transaction
26118
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.930443"], ["email", "stevie.monahan@sawaynkrajcik.com"], ["name", "Delphia Hayes"], ["password_hash", "906c9b1a7dd5d9d70a6a4c9eab01de7a"], ["updated_at", "2015-01-14 01:04:58.930443"], ["username", "6eff6295b0f32f18621fccf89e6cddbf"]]
26119
+  (0.7ms) commit transaction
26120
+  (0.0ms) begin transaction
26121
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.932287"], ["email", "amanda_graham@keler.com"], ["name", "Dolly O'Hara"], ["password_hash", "3ff86c99079689aec5d21f30558db246"], ["updated_at", "2015-01-14 01:04:58.932287"], ["username", "02332ad306c2d2018553f2b900b7e266"]]
26122
+  (0.7ms) commit transaction
26123
+  (0.0ms) begin transaction
26124
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.934208"], ["email", "aurelia_donnelly@larkin.name"], ["name", "Shanel Sawayn"], ["password_hash", "b9da96b2c0760129ef2621da772ed01a"], ["updated_at", "2015-01-14 01:04:58.934208"], ["username", "42ad28fb04955e8dc6d1ea2bf48b013e"]]
26125
+  (0.7ms) commit transaction
26126
+  (0.0ms) begin transaction
26127
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.936104"], ["email", "ania_yundt@goyette.org"], ["name", "Mafalda Mitchell"], ["password_hash", "74d62c2049ec0326f264d53189bdf5b8"], ["updated_at", "2015-01-14 01:04:58.936104"], ["username", "a6247106d82f641739c151f46befeb82"]]
26128
+  (0.9ms) commit transaction
26129
+  (0.0ms) begin transaction
26130
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.938135"], ["email", "keira@kerluke.net"], ["name", "Ransom Auer"], ["password_hash", "73ed4ed90f06902ed90fefd0fb78ba36"], ["updated_at", "2015-01-14 01:04:58.938135"], ["username", "a93dfad9e5d83fca250bb201fa2d3a04"]]
26131
+  (0.7ms) commit transaction
26132
+  (0.0ms) begin transaction
26133
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.939988"], ["email", "caden.haag@dubuquemurphy.org"], ["name", "Aaron Bailey"], ["password_hash", "242b78a38fc200400ebf6eee4df46bd8"], ["updated_at", "2015-01-14 01:04:58.939988"], ["username", "a55fc3d7f251a9b6bb9d675346bff26d"]]
26134
+  (0.7ms) commit transaction
26135
+  (0.0ms) begin transaction
26136
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.941863"], ["email", "pierre@schowalter.net"], ["name", "Manuela Eichmann"], ["password_hash", "8f8cdc70a936a7bb28b0ab82a4a72b17"], ["updated_at", "2015-01-14 01:04:58.941863"], ["username", "a6624b9e5ff277c4dd0dd0153eefc330"]]
26137
+  (0.8ms) commit transaction
26138
+  (0.0ms) begin transaction
26139
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.943919"], ["email", "ollie_cartwright@cain.name"], ["name", "Vicky Ondricka"], ["password_hash", "777cfa9340d245328a1d965094d1c172"], ["updated_at", "2015-01-14 01:04:58.943919"], ["username", "87b1a6fc87482853cb207525f74f5d5e"]]
26140
+  (0.6ms) commit transaction
26141
+  (0.0ms) begin transaction
26142
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.945789"], ["email", "grover_block@williamson.net"], ["name", "Kelli Schowalter"], ["password_hash", "ce764b9336ed71b47fc4b385fea7a602"], ["updated_at", "2015-01-14 01:04:58.945789"], ["username", "bd5bc63119c927726c9a2bbdd0235599"]]
26143
+  (0.5ms) commit transaction
26144
+  (0.0ms) begin transaction
26145
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.947471"], ["email", "adelia@skilescormier.info"], ["name", "Mr. Freida Johns"], ["password_hash", "e8a86fd22ed3f1cb8564a798363ccc9e"], ["updated_at", "2015-01-14 01:04:58.947471"], ["username", "bc0af4036026fa53a0fd2ae9d5575ee2"]]
26146
+  (0.6ms) commit transaction
26147
+  (0.0ms) begin transaction
26148
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.949261"], ["email", "nels@beiercorkery.net"], ["name", "Dr. Dahlia Ritchie"], ["password_hash", "88c5a7c39aee3243be69dd78c2eca568"], ["updated_at", "2015-01-14 01:04:58.949261"], ["username", "d5a20abda82d40cd94d531a26d58aadd"]]
26149
+  (0.7ms) commit transaction
26150
+  (0.1ms) begin transaction
26151
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.951173"], ["email", "erling@stoltenberg.net"], ["name", "Dr. Lourdes Schinner"], ["password_hash", "eca27a59ec0a0edc4ea765d26027806b"], ["updated_at", "2015-01-14 01:04:58.951173"], ["username", "28cc7a3f8090950a2acee4bbb2e51e53"]]
26152
+  (0.7ms) commit transaction
26153
+  (0.1ms) begin transaction
26154
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.953130"], ["email", "marta.ziemann@frami.com"], ["name", "Laurine Harris V"], ["password_hash", "a7221e93d42be2ceba341d9404bcb24f"], ["updated_at", "2015-01-14 01:04:58.953130"], ["username", "b9ddaea3393cea802fd42a9a445be5f0"]]
26155
+  (0.8ms) commit transaction
26156
+  (0.0ms) begin transaction
26157
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.955082"], ["email", "bobby@jonesbaumbach.com"], ["name", "Alize MacGyver II"], ["password_hash", "59c8b06fa5757b75c01f62e11c252712"], ["updated_at", "2015-01-14 01:04:58.955082"], ["username", "584dc27ea494e8426faef509cfc4c29c"]]
26158
+  (0.7ms) commit transaction
26159
+  (0.0ms) begin transaction
26160
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.956953"], ["email", "callie.howe@veum.info"], ["name", "Logan Prosacco DVM"], ["password_hash", "a8d1581b5570d13e7bd6a6094f0a8510"], ["updated_at", "2015-01-14 01:04:58.956953"], ["username", "bd2ce0683d4af66eda573ee0ed4d325f"]]
26161
+  (0.7ms) commit transaction
26162
+  (0.0ms) begin transaction
26163
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.958873"], ["email", "bette_hartmann@haleycruickshank.com"], ["name", "Nathen Emmerich"], ["password_hash", "1f69bed2f2ab66f436d7cc7f1af9bc54"], ["updated_at", "2015-01-14 01:04:58.958873"], ["username", "b339ccb896d6c15f19082a9c3d2958cd"]]
26164
+  (0.7ms) commit transaction
26165
+  (0.0ms) begin transaction
26166
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.960785"], ["email", "rachel_barton@pollichgerlach.name"], ["name", "Shany Purdy"], ["password_hash", "ec5472dd18df8b9e0c610f8696f6789a"], ["updated_at", "2015-01-14 01:04:58.960785"], ["username", "03420c3fc87a42d61f943e9b652463b6"]]
26167
+  (0.7ms) commit transaction
26168
+  (0.0ms) begin transaction
26169
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.962687"], ["email", "rebeka@padbergsatterfield.com"], ["name", "Lurline Reinger"], ["password_hash", "9681ee82764320f8219ad35fd9aa4002"], ["updated_at", "2015-01-14 01:04:58.962687"], ["username", "1a4ac907daddba684fe241f523364929"]]
26170
+  (0.7ms) commit transaction
26171
+  (0.0ms) begin transaction
26172
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.964675"], ["email", "milton.herman@oconnermueller.net"], ["name", "Mrs. Jaylin Konopelski"], ["password_hash", "7ef71c83963ec08ad73041c0e7322d7b"], ["updated_at", "2015-01-14 01:04:58.964675"], ["username", "3cc673ba4cfa13b15b889f819297f5f6"]]
26173
+  (0.6ms) commit transaction
26174
+  (0.0ms) begin transaction
26175
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.966540"], ["email", "ludwig_howell@effertzmurray.info"], ["name", "Johnnie Little"], ["password_hash", "c0ed61077b92a88518206eb0e275facd"], ["updated_at", "2015-01-14 01:04:58.966540"], ["username", "c6571a955ae50754dd22dd79fbf12ba3"]]
26176
+  (0.6ms) commit transaction
26177
+  (0.0ms) begin transaction
26178
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.968544"], ["email", "abigale_barrows@damoresipes.net"], ["name", "Dr. Erica Ferry"], ["password_hash", "ae82b5493d7c5b513037fa2f572532f4"], ["updated_at", "2015-01-14 01:04:58.968544"], ["username", "f5ff1809186b04b39e7e0856859595be"]]
26179
+  (0.6ms) commit transaction
26180
+  (0.0ms) begin transaction
26181
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.970383"], ["email", "cara_zboncak@simonis.name"], ["name", "Wendy Harvey"], ["password_hash", "d4c96fd047b2cef09d5cd4518dbae79a"], ["updated_at", "2015-01-14 01:04:58.970383"], ["username", "c438cb36c2515ddc7edb636a5ceb19e4"]]
26182
+  (0.7ms) commit transaction
26183
+  (0.0ms) begin transaction
26184
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.972229"], ["email", "emelie@bergstrombalistreri.org"], ["name", "Julio Hudson"], ["password_hash", "a40c73075249aae29ad678c2bb631e5f"], ["updated_at", "2015-01-14 01:04:58.972229"], ["username", "1e8f13027aa7ac415b2eabf05feccfc3"]]
26185
+  (0.6ms) commit transaction
26186
+  (0.0ms) begin transaction
26187
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.974116"], ["email", "abagail_simonis@heathcote.org"], ["name", "Cathryn Kunze"], ["password_hash", "ef1d437002a017046e7a1a56819e6dc5"], ["updated_at", "2015-01-14 01:04:58.974116"], ["username", "7b3c6d7c7d42e967c803930894c3e924"]]
26188
+  (0.7ms) commit transaction
26189
+  (0.0ms) begin transaction
26190
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.975970"], ["email", "hilbert@botsford.info"], ["name", "Helen Lang"], ["password_hash", "0d1da0882b6a44f0647fc260a9f7989d"], ["updated_at", "2015-01-14 01:04:58.975970"], ["username", "cdaf9d49ace3cceacf28b6dd0627e36a"]]
26191
+  (0.7ms) commit transaction
26192
+  (0.0ms) begin transaction
26193
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.977841"], ["email", "earnest@fay.com"], ["name", "Dr. Freeda Rau"], ["password_hash", "8def8e36db13c81722080cf19b131350"], ["updated_at", "2015-01-14 01:04:58.977841"], ["username", "ca4d8b3a553b6a0000f8b88e63f2db3d"]]
26194
+  (0.7ms) commit transaction
26195
+  (0.0ms) begin transaction
26196
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.979735"], ["email", "pat.ebert@jenkinskutch.biz"], ["name", "Imani Mosciski"], ["password_hash", "fb9459437a96e140847a503641adde40"], ["updated_at", "2015-01-14 01:04:58.979735"], ["username", "c6cf17af6c31f9cd03f0a8b6f0331728"]]
26197
+  (0.7ms) commit transaction
26198
+  (0.0ms) begin transaction
26199
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.981651"], ["email", "dawson.padberg@batz.name"], ["name", "Delaney Doyle"], ["password_hash", "26e2b0e00be05ee9d69331dd507521b7"], ["updated_at", "2015-01-14 01:04:58.981651"], ["username", "44f6af22910eb6b95f86cde2da80090f"]]
26200
+  (0.7ms) commit transaction
26201
+  (0.0ms) begin transaction
26202
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.983569"], ["email", "lafayette.legros@beatty.biz"], ["name", "Deon Stracke"], ["password_hash", "97c08a603047dacd29537edb5c91d84a"], ["updated_at", "2015-01-14 01:04:58.983569"], ["username", "cb5bc4fd41bb9aa890bebd774bc58b99"]]
26203
+  (0.7ms) commit transaction
26204
+  (0.0ms) begin transaction
26205
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.985512"], ["email", "jeramy_heaney@turcottemurazik.com"], ["name", "Alec Considine"], ["password_hash", "8290370c1d090a7cc37828fcc9f1cf60"], ["updated_at", "2015-01-14 01:04:58.985512"], ["username", "fbb9be47380e73a85967bfc3cd936892"]]
26206
+  (0.7ms) commit transaction
26207
+  (0.0ms) begin transaction
26208
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.987367"], ["email", "zetta_littel@hammestreutel.name"], ["name", "Braeden Glover"], ["password_hash", "20394d9ab95dc68ddb08d04224e719c6"], ["updated_at", "2015-01-14 01:04:58.987367"], ["username", "721ae1b31ef6e0f51ee730100c4fc3af"]]
26209
+  (0.8ms) commit transaction
26210
+  (0.0ms) begin transaction
26211
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.989505"], ["email", "jettie.grimes@wintheiser.biz"], ["name", "Vicente Beatty"], ["password_hash", "dc4e04f129736a2907cf5205abcb2e7d"], ["updated_at", "2015-01-14 01:04:58.989505"], ["username", "994f442447d685d5432f21de470e9936"]]
26212
+  (0.7ms) commit transaction
26213
+  (0.0ms) begin transaction
26214
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.991393"], ["email", "elizabeth@greenholt.name"], ["name", "Miss Rosalind Terry"], ["password_hash", "a37dcbaf37b358611bc84cbd23140dbc"], ["updated_at", "2015-01-14 01:04:58.991393"], ["username", "fa419dfbc845a9df8bc8df695e226e5d"]]
26215
+  (0.7ms) commit transaction
26216
+  (0.0ms) begin transaction
26217
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.993270"], ["email", "quinton_huel@keler.info"], ["name", "Ivah Raynor"], ["password_hash", "dab0d79e3170d0889e3f160176b72e84"], ["updated_at", "2015-01-14 01:04:58.993270"], ["username", "2f587f63d5d45269aa90acd3216c665f"]]
26218
+  (0.7ms) commit transaction
26219
+  (0.0ms) begin transaction
26220
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.995125"], ["email", "juwan.mclaughlin@herzog.name"], ["name", "Annalise Nolan"], ["password_hash", "5d39b1352179d7acec4007f051a3a50f"], ["updated_at", "2015-01-14 01:04:58.995125"], ["username", "0261fe938e0e634759f457051b7f5988"]]
26221
+  (0.7ms) commit transaction
26222
+  (0.0ms) begin transaction
26223
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.997118"], ["email", "jude.hahn@reinger.org"], ["name", "Dr. Robert Langworth"], ["password_hash", "764a32bd0da320cf01e31e91813694be"], ["updated_at", "2015-01-14 01:04:58.997118"], ["username", "d81883dafa68fd1327cced6b9e1c3f7d"]]
26224
+  (0.7ms) commit transaction
26225
+  (0.0ms) begin transaction
26226
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:58.999007"], ["email", "august_will@mcglynnryan.com"], ["name", "Emmy Wehner"], ["password_hash", "3923508c4f1ad0ffcdbc2a5169e99242"], ["updated_at", "2015-01-14 01:04:58.999007"], ["username", "69e5f2485662bdfe61716db22d614de3"]]
26227
+  (0.8ms) commit transaction
26228
+  (0.0ms) begin transaction
26229
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.001186"], ["email", "sonia@baileyfarrell.info"], ["name", "Raymundo Price"], ["password_hash", "e3e3f29c6b152a9f11b92e3c22ad1f80"], ["updated_at", "2015-01-14 01:04:59.001186"], ["username", "4755a73319d7973a93bc3bd2a34d32e8"]]
26230
+  (0.6ms) commit transaction
26231
+  (0.1ms) begin transaction
26232
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.002992"], ["email", "roberta@koepp.biz"], ["name", "Jaida Anderson"], ["password_hash", "e38fe1682b05b50148906077f08e888c"], ["updated_at", "2015-01-14 01:04:59.002992"], ["username", "94a49b595aacf78f1d8232c46d0fd046"]]
26233
+  (0.7ms) commit transaction
26234
+  (0.0ms) begin transaction
26235
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.004854"], ["email", "oma@thiel.org"], ["name", "Cheyanne Rowe"], ["password_hash", "cf0fe97ba0610a5cf298dc816ca216e6"], ["updated_at", "2015-01-14 01:04:59.004854"], ["username", "7327a8119603f5661154c04bc2a87c26"]]
26236
+  (0.6ms) commit transaction
26237
+  (0.1ms) begin transaction
26238
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.006952"], ["email", "stacey@gleichner.name"], ["name", "Eldon Gislason II"], ["password_hash", "2e9734d84bebfa3a595e8bd0c1989184"], ["updated_at", "2015-01-14 01:04:59.006952"], ["username", "6cb9ec665bf06fe096c5d0d41562ab86"]]
26239
+  (0.7ms) commit transaction
26240
+  (0.0ms) begin transaction
26241
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.008906"], ["email", "julianne.bartell@townegusikowski.name"], ["name", "Briana Rice"], ["password_hash", "5c4e534ac560c5bc40fa2bdb1941a20b"], ["updated_at", "2015-01-14 01:04:59.008906"], ["username", "db65f81bd36ed813bb7a1e97876eea92"]]
26242
+  (0.7ms) commit transaction
26243
+  (0.0ms) begin transaction
26244
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.010913"], ["email", "susana@botsford.name"], ["name", "Abbey Crooks"], ["password_hash", "e5a2d633cdff12cc1900d0f587dd0bb0"], ["updated_at", "2015-01-14 01:04:59.010913"], ["username", "aba13a94050c423a77ba5ef4c4cca836"]]
26245
+  (0.7ms) commit transaction
26246
+  (0.0ms) begin transaction
26247
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.012832"], ["email", "mariano.hoeger@schneider.org"], ["name", "Dr. Selena Graham"], ["password_hash", "642f783c5649749057641ba61d46fe40"], ["updated_at", "2015-01-14 01:04:59.012832"], ["username", "36904b1b1270d85a85d5322c4fa361b5"]]
26248
+  (0.7ms) commit transaction
26249
+  (0.0ms) begin transaction
26250
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.014782"], ["email", "lee.renner@windler.net"], ["name", "Kelsi Huels"], ["password_hash", "71247d0adc5ac376b8cd2c10e8e872e6"], ["updated_at", "2015-01-14 01:04:59.014782"], ["username", "8cfec4e91156089cd96fddee3d40d114"]]
26251
+  (0.6ms) commit transaction
26252
+  (0.0ms) begin transaction
26253
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.016610"], ["email", "alfonso@leannon.info"], ["name", "Werner Pacocha"], ["password_hash", "92c56a30d8d051807c31640bc0eaef70"], ["updated_at", "2015-01-14 01:04:59.016610"], ["username", "41aa422d2e8c61985d3065084a4492ca"]]
26254
+  (0.7ms) commit transaction
26255
+  (0.0ms) begin transaction
26256
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.018558"], ["email", "geovany.zboncak@cummingsleannon.com"], ["name", "Maxine Moore"], ["password_hash", "2d8ea4bfd457e8e2096cd56e32bdc087"], ["updated_at", "2015-01-14 01:04:59.018558"], ["username", "f0d40d108745e9a00946c922d4b7942f"]]
26257
+  (0.7ms) commit transaction
26258
+  (0.0ms) begin transaction
26259
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.020468"], ["email", "madelyn@baumbach.biz"], ["name", "Lura Harris"], ["password_hash", "b790118f0acf50d0f1df66b06e8518e3"], ["updated_at", "2015-01-14 01:04:59.020468"], ["username", "8385264b86c764c2066c2c3bc0341c7d"]]
26260
+  (0.6ms) commit transaction
26261
+  (0.0ms) begin transaction
26262
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.022358"], ["email", "alysa.raynor@funk.com"], ["name", "Evans Powlowski DDS"], ["password_hash", "d9c63567c4775048529981b0c6870af9"], ["updated_at", "2015-01-14 01:04:59.022358"], ["username", "081d32b6a665f59eb6ea4ff5b53cf71a"]]
26263
+  (0.6ms) commit transaction
26264
+  (0.0ms) begin transaction
26265
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.024188"], ["email", "yesenia@kuhngleason.name"], ["name", "Bertha Vandervort"], ["password_hash", "fbc38b540029d5649177d067460bde6b"], ["updated_at", "2015-01-14 01:04:59.024188"], ["username", "c47fd4765060e48076ed7bea7c4056e3"]]
26266
+  (0.6ms) commit transaction
26267
+  (0.0ms) begin transaction
26268
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.025997"], ["email", "ethelyn.pacocha@connhaley.org"], ["name", "Alana Klocko II"], ["password_hash", "3cfb5e118dae820932a404936df2d06a"], ["updated_at", "2015-01-14 01:04:59.025997"], ["username", "62faff2eb0f31ac127dee4190ee82365"]]
26269
+  (0.7ms) commit transaction
26270
+  (0.0ms) begin transaction
26271
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.027905"], ["email", "sheila_osinski@hermann.info"], ["name", "Joshuah Crona I"], ["password_hash", "5f8aae6b9f9a990f36566837180076b0"], ["updated_at", "2015-01-14 01:04:59.027905"], ["username", "4451242dd73ab24070be3030a2626588"]]
26272
+  (0.7ms) commit transaction
26273
+  (0.0ms) begin transaction
26274
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.029818"], ["email", "lenora@cronin.org"], ["name", "Mellie Hettinger"], ["password_hash", "e11902e68ccbe6aca149a31f24116361"], ["updated_at", "2015-01-14 01:04:59.029818"], ["username", "15a8e467fe8a66530f25f7b29c7ac2e5"]]
26275
+  (0.7ms) commit transaction
26276
+  (0.0ms) begin transaction
26277
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.031844"], ["email", "suzanne@pollich.name"], ["name", "Berenice Smitham I"], ["password_hash", "3c23a54a1a00a234e3a017bb4c7ed096"], ["updated_at", "2015-01-14 01:04:59.031844"], ["username", "2494669cf9cdaa0fe87fa9784d68efde"]]
26278
+  (0.6ms) commit transaction
26279
+  (0.0ms) begin transaction
26280
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.033626"], ["email", "brian_blick@thompson.com"], ["name", "Queen Miller PhD"], ["password_hash", "706e63589529a1f6ed8f3c7f8ec48949"], ["updated_at", "2015-01-14 01:04:59.033626"], ["username", "592a78646b56afdf6709019af8ec2e01"]]
26281
+  (0.6ms) commit transaction
26282
+  (0.0ms) begin transaction
26283
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.035469"], ["email", "enoch_larkin@yundtrau.name"], ["name", "Armando Wilderman"], ["password_hash", "3c3a30a7479cabb16380d643d3281199"], ["updated_at", "2015-01-14 01:04:59.035469"], ["username", "63779d2644c12e4d46bd1857629e1293"]]
26284
+  (0.7ms) commit transaction
26285
+  (0.0ms) begin transaction
26286
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.037415"], ["email", "blaise_little@goyette.org"], ["name", "Ransom Prohaska Sr."], ["password_hash", "1d6ac988dcd3992ef1bfdf3bd859f0b2"], ["updated_at", "2015-01-14 01:04:59.037415"], ["username", "9f866742418c719d107659764810667d"]]
26287
+  (0.7ms) commit transaction
26288
+  (0.0ms) begin transaction
26289
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.039298"], ["email", "fernando.beer@streich.net"], ["name", "Dorcas Upton"], ["password_hash", "6cf4e179233d51faa5492ae67e8c99d3"], ["updated_at", "2015-01-14 01:04:59.039298"], ["username", "fe1fbc14236ec7c59d327832c665ecc8"]]
26290
+  (0.6ms) commit transaction
26291
+  (0.0ms) begin transaction
26292
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.041093"], ["email", "brandy@heidenreich.com"], ["name", "Ms. Eudora Labadie"], ["password_hash", "436431a9e552aa21074b75614bf3c004"], ["updated_at", "2015-01-14 01:04:59.041093"], ["username", "c1080bdd3be5ed0ae90d0767775df934"]]
26293
+  (0.6ms) commit transaction
26294
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."name" LIKE '% doe%'
26295
+  (0.0ms) begin transaction
26296
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.044382"], ["email", "john@doe.com"], ["name", "John Doe"], ["password_hash", "edcee82d6d46e5b7aeab888b56390ed3"], ["updated_at", "2015-01-14 01:04:59.044382"], ["username", "doejohn"]]
26297
+  (0.7ms) commit transaction
26298
+  (0.0ms) begin transaction
26299
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.046366"], ["email", "jane@doe.com"], ["name", "Jane Doe"], ["password_hash", "b29a28c9bfc0233aea3b2026ffb68310"], ["updated_at", "2015-01-14 01:04:59.046366"], ["username", "doejane"]]
26300
+  (0.6ms) commit transaction
26301
+  (0.0ms) begin transaction
26302
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:04:59.048061"], ["email", "jack@doe.com"], ["name", "Jack Doe"], ["password_hash", "e5fb363b59555df572db2a290665c317"], ["updated_at", "2015-01-14 01:04:59.048061"], ["username", "doejack"]]
26303
+  (0.6ms) commit transaction
26304
+  (0.1ms) begin transaction
26305
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
26306
+  (0.0ms) commit transaction
26307
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE '% dOe%')) ORDER BY "users"."name" ASC
26308
+  (0.0ms) begin transaction
26309
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
26310
+  (0.0ms) commit transaction
26311
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%')) ORDER BY "users"."name" ASC
26312
+  (0.0ms) begin transaction
26313
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
26314
+  (0.0ms) commit transaction
26315
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%')) ORDER BY "users"."name" ASC
26316
+  (0.0ms) begin transaction
26317
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'DoE%'))
26318
+  (0.0ms) commit transaction
26319
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'DoE%')) ORDER BY "users"."created_at" ASC, "users"."name" ASC
26320
+  (0.0ms) begin transaction
26321
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'dOe%'))
26322
+  (0.0ms) commit transaction
26323
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'dOe%')) ORDER BY "users"."created_at" DESC, "users"."name" DESC
26324
+  (0.1ms) SELECT COUNT(*) FROM "users"
26325
+  (0.0ms) begin transaction
26326
+  (0.1ms) SELECT COUNT(*) FROM "users"
26327
+  (0.1ms) commit transaction
26328
+ User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC
26329
+  (0.0ms) begin transaction
26330
+  (0.1ms) SELECT COUNT(*) FROM "users"
26331
+  (0.0ms) commit transaction
26332
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 0
26333
+  (0.0ms) begin transaction
26334
+  (0.1ms) SELECT COUNT(*) FROM "users"
26335
+  (0.0ms) commit transaction
26336
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 0
26337
+  (0.0ms) begin transaction
26338
+  (0.1ms) SELECT COUNT(*) FROM "users"
26339
+  (0.0ms) commit transaction
26340
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 20
26341
+  (0.1ms) begin transaction
26342
+  (0.1ms) SELECT COUNT(*) FROM "users"
26343
+  (0.0ms) commit transaction
26344
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 40
26345
+  (0.0ms) begin transaction
26346
+  (0.1ms) SELECT COUNT(*) FROM "users"
26347
+  (0.0ms) commit transaction
26348
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 60
26349
+  (0.0ms) begin transaction
26350
+  (0.1ms) SELECT COUNT(*) FROM "users"
26351
+  (0.0ms) commit transaction
26352
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 80
26353
+  (0.0ms) begin transaction
26354
+  (0.1ms) SELECT COUNT(*) FROM "users"
26355
+  (0.0ms) commit transaction
26356
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 19980
26357
+  (1.8ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
26358
+  (0.1ms) select sqlite_version(*)
26359
+  (0.9ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
26360
+  (0.8ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
26361
+  (1.0ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
26362
+  (0.1ms) SELECT sql
26363
+ FROM sqlite_master
26364
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26365
+ UNION ALL
26366
+ SELECT sql
26367
+ FROM sqlite_temp_master
26368
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26369
+
26370
+  (0.8ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
26371
+  (0.1ms) SELECT sql
26372
+ FROM sqlite_master
26373
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
26374
+ UNION ALL
26375
+ SELECT sql
26376
+ FROM sqlite_temp_master
26377
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
26378
+
26379
+  (0.1ms)  SELECT sql
26380
+ FROM sqlite_master
26381
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26382
+ UNION ALL
26383
+ SELECT sql
26384
+ FROM sqlite_temp_master
26385
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26386
+ 
26387
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
26388
+  (0.7ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
26389
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
26390
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
26391
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
26392
+  (0.1ms)  SELECT sql
26393
+ FROM sqlite_master
26394
+ WHERE name='index_users_on_email' AND type='index'
26395
+ UNION ALL
26396
+ SELECT sql
26397
+ FROM sqlite_temp_master
26398
+ WHERE name='index_users_on_email' AND type='index'
26399
+ 
26400
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
26401
+  (0.1ms)  SELECT sql
26402
+ FROM sqlite_master
26403
+ WHERE name='index_users_on_name' AND type='index'
26404
+ UNION ALL
26405
+ SELECT sql
26406
+ FROM sqlite_temp_master
26407
+ WHERE name='index_users_on_name' AND type='index'
26408
+ 
26409
+  (0.1ms) SELECT sql
26410
+ FROM sqlite_master
26411
+ WHERE name='index_users_on_email' AND type='index'
26412
+ UNION ALL
26413
+ SELECT sql
26414
+ FROM sqlite_temp_master
26415
+ WHERE name='index_users_on_email' AND type='index'
26416
+
26417
+  (0.7ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
26418
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
26419
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26420
+  (0.1ms) SELECT version FROM "schema_migrations"
26421
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
26422
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
26423
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26424
+  (0.1ms) begin transaction
26425
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.286269"], ["email", "edmond@cruickshank.biz"], ["name", "Remington Lowe"], ["password_hash", "305858bf3c2495cb33564c5ebe40006e"], ["updated_at", "2015-01-14 01:07:01.286269"], ["username", "f2184b51f72db9a0118165c4044e2b14"]]
26426
+  (1.8ms) commit transaction
26427
+  (0.1ms) begin transaction
26428
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.292480"], ["email", "nicolette@hettinger.com"], ["name", "Ceasar Koelpin"], ["password_hash", "a268cf9571d15920997151f41f6a01b4"], ["updated_at", "2015-01-14 01:07:01.292480"], ["username", "7b43dced369fc06d98beaf8b76360039"]]
26429
+  (0.8ms) commit transaction
26430
+  (0.1ms) begin transaction
26431
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.298456"], ["email", "nathan.walter@fahey.info"], ["name", "Danielle Fay IV"], ["password_hash", "4228fa836db6e8938c2cbd8d48f080df"], ["updated_at", "2015-01-14 01:07:01.298456"], ["username", "efb339dacc1981074c21c3bc4cc07f7d"]]
26432
+  (0.6ms) commit transaction
26433
+  (0.0ms) begin transaction
26434
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.300866"], ["email", "grant_hane@legros.org"], ["name", "Miss Brycen Bergnaum"], ["password_hash", "a373495c4b99d3a7d852d497f5737bdf"], ["updated_at", "2015-01-14 01:07:01.300866"], ["username", "430aa31982c2123a20277f5129527910"]]
26435
+  (0.6ms) commit transaction
26436
+  (0.0ms) begin transaction
26437
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.303834"], ["email", "keira@handkoepp.net"], ["name", "Dr. Regan Hand"], ["password_hash", "b71aff36057cceb20c02ea5fc6a85b90"], ["updated_at", "2015-01-14 01:07:01.303834"], ["username", "f833f66ec396a1d3557dc2d0f7972fdb"]]
26438
+  (0.6ms) commit transaction
26439
+  (0.0ms) begin transaction
26440
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.305830"], ["email", "francesco@fay.biz"], ["name", "Mrs. Raina Will"], ["password_hash", "702f6ea0e1253c8555581143d18ccf58"], ["updated_at", "2015-01-14 01:07:01.305830"], ["username", "5d3f6caeb01f825868665a3844ad7ef6"]]
26441
+  (0.7ms) commit transaction
26442
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
26443
+  (0.0ms) begin transaction
26444
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.319789"], ["email", "sid_mayer@dubuque.biz"], ["name", "Walter Schiller"], ["password_hash", "a2e0bb9fa112d1cbc1d91d67cd8ad33e"], ["updated_at", "2015-01-14 01:07:01.319789"], ["username", "4785777db847d26211a81e4e6d082fe4"]]
26445
+  (0.7ms) commit transaction
26446
+  (0.0ms) begin transaction
26447
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.322138"], ["email", "audie@ziemann.net"], ["name", "Mr. Ursula Kiehn"], ["password_hash", "134da9f9216ea69c7babf35e1c972eba"], ["updated_at", "2015-01-14 01:07:01.322138"], ["username", "294443c855407e57574ff31addd10d6f"]]
26448
+  (0.6ms) commit transaction
26449
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
26450
+  (0.1ms) begin transaction
26451
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.326145"], ["email", "dorian@yost.name"], ["name", "Liana Rodriguez"], ["password_hash", "8197f2582202383c7cbbe8c9b6ef210d"], ["updated_at", "2015-01-14 01:07:01.326145"], ["username", "f73370f3f59d0b3dfcd5a381d4330014"]]
26452
+  (0.6ms) commit transaction
26453
+  (0.0ms) begin transaction
26454
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.328281"], ["email", "clark@christiansenbecker.com"], ["name", "Raegan Koch IV"], ["password_hash", "8438997663bb910b756cf96eba6d1d9d"], ["updated_at", "2015-01-14 01:07:01.328281"], ["username", "fd0d98881dc317d7e4331ee49886a618"]]
26455
+  (0.8ms) commit transaction
26456
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 ORDER BY "users"."id" ASC LIMIT 1
26457
+  (0.1ms) begin transaction
26458
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.349471"], ["email", "deontae.jakubowski@spinka.biz"], ["name", "Matilde Pacocha"], ["password_hash", "300a2827adefeaacd0312081c117999b"], ["updated_at", "2015-01-14 01:07:01.349471"], ["username", "2e05049d58d0d6222db43463be1f7140"]]
26459
+  (0.6ms) commit transaction
26460
+  (0.0ms) begin transaction
26461
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.352543"], ["email", "favian.farrell@considinepadberg.net"], ["name", "Noelia Cassin II"], ["password_hash", "a4eba687a5c1fb140d717ecf599a497c"], ["updated_at", "2015-01-14 01:07:01.352543"], ["username", "c48e03b2251717294f68bacd2176fa9b"]]
26462
+  (0.7ms) commit transaction
26463
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 12 ORDER BY "users"."id" ASC LIMIT 1
26464
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
26465
+  (0.0ms) begin transaction
26466
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.357174"], ["email", "broderick@gibson.biz"], ["name", "Elsie Cormier III"], ["password_hash", "22ed542f7e7a12d246633aef73ac33b5"], ["updated_at", "2015-01-14 01:07:01.357174"], ["username", "7cd4ae2aa51605d5093ed5dd0d3f29ae"]]
26467
+  (0.7ms) commit transaction
26468
+  (0.0ms) begin transaction
26469
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.359217"], ["email", "chaya@kirlin.com"], ["name", "Abraham Armstrong"], ["password_hash", "d6f27285d55fb2e2d2439ff3a7cd6d37"], ["updated_at", "2015-01-14 01:07:01.359217"], ["username", "00b17c3b42d6f3120c95aaa267c7ae71"]]
26470
+  (0.7ms) commit transaction
26471
+  (0.0ms) begin transaction
26472
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.361268"], ["email", "yasmeen.stiedemann@littel.biz"], ["name", "Mr. Justen Kohler"], ["password_hash", "c6dd44df171553d71a1bcbf77fef257e"], ["updated_at", "2015-01-14 01:07:01.361268"], ["username", "19cb3a601faabf100396286506b93594"]]
26473
+  (0.6ms) commit transaction
26474
+  (0.0ms) begin transaction
26475
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.363025"], ["email", "carlie@rosenbaumschmeler.com"], ["name", "Daryl Mitchell"], ["password_hash", "13a427186261be773e32aec7e233d79d"], ["updated_at", "2015-01-14 01:07:01.363025"], ["username", "7684576801c8c48abddbe54eee348447"]]
26476
+  (0.7ms) commit transaction
26477
+  (0.0ms) begin transaction
26478
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.364920"], ["email", "martine_kuhic@nolan.info"], ["name", "Dr. Jane Torphy"], ["password_hash", "745c29795a9368f2ce11fd41191b1b05"], ["updated_at", "2015-01-14 01:07:01.364920"], ["username", "d6067f481692ff2e7b882f866f592b54"]]
26479
+  (0.8ms) commit transaction
26480
+  (0.0ms) begin transaction
26481
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.366994"], ["email", "cordell@veum.net"], ["name", "Dasia Schuster"], ["password_hash", "d206bfcedb7d59ed49168f901c7fab15"], ["updated_at", "2015-01-14 01:07:01.366994"], ["username", "b36b4ceae5111cb1ca9948ee62772cea"]]
26482
+  (0.7ms) commit transaction
26483
+  (0.0ms) begin transaction
26484
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.369043"], ["email", "kirk_prohaska@emardboehm.biz"], ["name", "Isaac Bednar"], ["password_hash", "c22c3a507db55e65ffcdb3ea5caf1da5"], ["updated_at", "2015-01-14 01:07:01.369043"], ["username", "8da69e9403331910a9a3501fbf20c8f0"]]
26485
+  (0.7ms) commit transaction
26486
+  (0.0ms) begin transaction
26487
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.370988"], ["email", "malinda_feeney@denesik.info"], ["name", "Mr. Kadin Brakus"], ["password_hash", "8aec2c42f68cad861d9c47e36a34e6d9"], ["updated_at", "2015-01-14 01:07:01.370988"], ["username", "ecf27fe5fbea52c8ac7f5656bf5e66ef"]]
26488
+  (0.7ms) commit transaction
26489
+  (0.0ms) begin transaction
26490
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.372974"], ["email", "mack.fisher@vandervort.com"], ["name", "Ms. Jovani Bahringer"], ["password_hash", "18010f2084d5b18bf0417be69f19b7ab"], ["updated_at", "2015-01-14 01:07:01.372974"], ["username", "5a7083c336ef0b6eb90bb0c01d475f99"]]
26491
+  (0.7ms) commit transaction
26492
+  (0.0ms) begin transaction
26493
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.374906"], ["email", "felipe_kulas@hackett.biz"], ["name", "Jovan Wuckert"], ["password_hash", "6e90133bfa90a4b83d77969ac2160804"], ["updated_at", "2015-01-14 01:07:01.374906"], ["username", "453ee6b7563358b67c9b94191a85b72b"]]
26494
+  (0.7ms) commit transaction
26495
+  (0.0ms) begin transaction
26496
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.376780"], ["email", "wyman@mclaughlin.name"], ["name", "Miss Malcolm Glover"], ["password_hash", "a0f79e3d29f35cfff65559a6e723b9d8"], ["updated_at", "2015-01-14 01:07:01.376780"], ["username", "9eb00b30390dafb4e2a82a73129d6653"]]
26497
+  (0.6ms) commit transaction
26498
+  (0.1ms) begin transaction
26499
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.378830"], ["email", "miller@framiaufderhar.name"], ["name", "Bridgette Medhurst"], ["password_hash", "191860cbf7536939f59985ba55303c3a"], ["updated_at", "2015-01-14 01:07:01.378830"], ["username", "5bc40d563e6eecf0993186f42c636cc6"]]
26500
+  (0.7ms) commit transaction
26501
+  (0.0ms) begin transaction
26502
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.381139"], ["email", "percy@paucek.org"], ["name", "Blanche Treutel"], ["password_hash", "024fb0603b81890f861e7d52a4ea1b6d"], ["updated_at", "2015-01-14 01:07:01.381139"], ["username", "16b1f532ce0cc8c39bafd5b5c6e7db3f"]]
26503
+  (0.7ms) commit transaction
26504
+  (0.0ms) begin transaction
26505
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.383051"], ["email", "lorine_turcotte@luettgenrodriguez.info"], ["name", "Mikayla Hand"], ["password_hash", "9349971e36263dcf423d8e8e7bce32e2"], ["updated_at", "2015-01-14 01:07:01.383051"], ["username", "cced4af55c722f70c2f755059d940128"]]
26506
+  (0.7ms) commit transaction
26507
+  (0.0ms) begin transaction
26508
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.384935"], ["email", "charles@heller.net"], ["name", "Georgiana Schumm"], ["password_hash", "4d967965f226028522f8efa10bf7fa3b"], ["updated_at", "2015-01-14 01:07:01.384935"], ["username", "debead1ae3f1c55308f644dc32aef49d"]]
26509
+  (0.7ms) commit transaction
26510
+  (0.0ms) begin transaction
26511
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.386864"], ["email", "donna_welch@oreilly.name"], ["name", "Rosalia Stamm III"], ["password_hash", "a9e1e6f7833973f13bd07fee157016be"], ["updated_at", "2015-01-14 01:07:01.386864"], ["username", "e419e124280247ad4b2ca69c74b71c64"]]
26512
+  (0.7ms) commit transaction
26513
+  (0.0ms) begin transaction
26514
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.388779"], ["email", "rachael_davis@nitzsche.net"], ["name", "Magdalen Blanda"], ["password_hash", "a6d6edc0ff6bd7fb00fd775e911b7ae8"], ["updated_at", "2015-01-14 01:07:01.388779"], ["username", "908ff17d7be6eeb2095edf5f32e66104"]]
26515
+  (0.8ms) commit transaction
26516
+  (0.0ms) begin transaction
26517
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.390837"], ["email", "zoey@borer.org"], ["name", "Antonette Greenholt"], ["password_hash", "4e3da807f74a45fbf306b09dd5c8969f"], ["updated_at", "2015-01-14 01:07:01.390837"], ["username", "632d1c4ed88c2b2d89ab24a14531e72a"]]
26518
+  (0.7ms) commit transaction
26519
+  (0.0ms) begin transaction
26520
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.392803"], ["email", "eriberto.hand@leannonhoppe.com"], ["name", "Dovie Schmeler Jr."], ["password_hash", "38abfe53fa92d163224c62176eef5226"], ["updated_at", "2015-01-14 01:07:01.392803"], ["username", "4823deb8a1597460ec9e8706a016934a"]]
26521
+  (0.7ms) commit transaction
26522
+  (0.0ms) begin transaction
26523
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.394832"], ["email", "marge_ruecker@reillykoelpin.name"], ["name", "Mrs. Nikita Stark"], ["password_hash", "5bcda9880ef8a8d8f91065ee37540384"], ["updated_at", "2015-01-14 01:07:01.394832"], ["username", "4adab4f0487ad0794cfb24ea0d91371f"]]
26524
+  (0.7ms) commit transaction
26525
+  (0.0ms) begin transaction
26526
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.396753"], ["email", "stone@mrazmoore.biz"], ["name", "Mrs. Marianne O'Connell"], ["password_hash", "67b6d246102a38cef2d28e8c177a934a"], ["updated_at", "2015-01-14 01:07:01.396753"], ["username", "82a2ee31cdba5cad8db2eca8d5dcefe6"]]
26527
+  (0.7ms) commit transaction
26528
+  (0.0ms) begin transaction
26529
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.398648"], ["email", "hortense_gulgowski@rueckergorczany.com"], ["name", "Lesley Will"], ["password_hash", "1f5bd9dacdd68bfce84251f714769075"], ["updated_at", "2015-01-14 01:07:01.398648"], ["username", "44900f3548ce9de6c010dcdb26c6ed56"]]
26530
+  (0.7ms) commit transaction
26531
+  (0.0ms) begin transaction
26532
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.400575"], ["email", "faye@denesik.org"], ["name", "Lawrence Labadie"], ["password_hash", "869f7265ed3a775147dffc5c0f7e7ecb"], ["updated_at", "2015-01-14 01:07:01.400575"], ["username", "9a6d2d9801e4fc489a9cdedb8d03832f"]]
26533
+  (0.7ms) commit transaction
26534
+  (0.0ms) begin transaction
26535
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.402478"], ["email", "webster.wuckert@heidenreichtremblay.com"], ["name", "Raheem Weissnat"], ["password_hash", "00d5d55e34c09d8f57d57af745ea6602"], ["updated_at", "2015-01-14 01:07:01.402478"], ["username", "851cd83fe14987a8cbc9c606928e30db"]]
26536
+  (0.7ms) commit transaction
26537
+  (0.0ms) begin transaction
26538
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.404495"], ["email", "king@terryokon.org"], ["name", "Ms. Lauryn Hessel"], ["password_hash", "471c14c26b3c95baed3ee6730ba80268"], ["updated_at", "2015-01-14 01:07:01.404495"], ["username", "b47411e94baf3ca953bf5260087fe62a"]]
26539
+  (0.6ms) commit transaction
26540
+  (0.0ms) begin transaction
26541
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.406212"], ["email", "leopold@conroycartwright.name"], ["name", "Caleigh Corwin"], ["password_hash", "4e593ea0b1adab17e19904e0c58ce9ae"], ["updated_at", "2015-01-14 01:07:01.406212"], ["username", "5e00bac5ef9ec4dffa20f598f7d16d7d"]]
26542
+  (0.6ms) commit transaction
26543
+  (0.0ms) begin transaction
26544
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.407900"], ["email", "emmanuel@buckridge.biz"], ["name", "Joanie Metz"], ["password_hash", "5b3d798b2ed719be224e2e058e7dc316"], ["updated_at", "2015-01-14 01:07:01.407900"], ["username", "36a70b5e22a675c63b765eef5dd8dafd"]]
26545
+  (0.6ms) commit transaction
26546
+  (0.0ms) begin transaction
26547
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.409690"], ["email", "gregg@millscummerata.biz"], ["name", "Angus Cormier"], ["password_hash", "8fc56349366fd22ac5735fa5ecbe4cef"], ["updated_at", "2015-01-14 01:07:01.409690"], ["username", "e119fb2a8117f5a5db9719716b3556b9"]]
26548
+  (0.6ms) commit transaction
26549
+  (0.0ms) begin transaction
26550
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.411495"], ["email", "hollis.koelpin@bosco.biz"], ["name", "Lori Ziemann"], ["password_hash", "befbf6c438f5c4cd6d1349a3c184080b"], ["updated_at", "2015-01-14 01:07:01.411495"], ["username", "c45e2d3afe5d2c029302bfc9802d720b"]]
26551
+  (0.7ms) commit transaction
26552
+  (0.0ms) begin transaction
26553
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.413415"], ["email", "cornell@pfannerstill.name"], ["name", "Alison Crist"], ["password_hash", "20473c66d2d13d7c6b7a1e03895c82d0"], ["updated_at", "2015-01-14 01:07:01.413415"], ["username", "3967f7c54047b5463769a542674a7e64"]]
26554
+  (0.7ms) commit transaction
26555
+  (0.0ms) begin transaction
26556
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.415354"], ["email", "ludie_goodwin@keebler.info"], ["name", "Mr. Citlalli Becker"], ["password_hash", "834fe253e4dd4fd2b872b4cd7573d4a3"], ["updated_at", "2015-01-14 01:07:01.415354"], ["username", "0a6434a30deaa7a14af33a7a2f403bbb"]]
26557
+  (0.6ms) commit transaction
26558
+  (0.0ms) begin transaction
26559
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.417143"], ["email", "kendrick@jacobs.net"], ["name", "Jovanny Kerluke"], ["password_hash", "e6beeb9fb1cc5814f42f66a93ba7c470"], ["updated_at", "2015-01-14 01:07:01.417143"], ["username", "e080cd004847454e228d592227179616"]]
26560
+  (0.7ms) commit transaction
26561
+  (0.0ms) begin transaction
26562
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.418986"], ["email", "fritz@schiller.info"], ["name", "Ms. Dayana Pfeffer"], ["password_hash", "f42c80e2c01cb00a2406f136031003d8"], ["updated_at", "2015-01-14 01:07:01.418986"], ["username", "fc5f8c3e65f487cc32445b341d9ff72e"]]
26563
+  (0.7ms) commit transaction
26564
+  (0.0ms) begin transaction
26565
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.420846"], ["email", "alford_huels@tillmangreen.info"], ["name", "Burnice Johnson"], ["password_hash", "123467f7db2fb2995312405ae0e98717"], ["updated_at", "2015-01-14 01:07:01.420846"], ["username", "177e24f88b8c5d5a9a3b611f1e5fee8a"]]
26566
+  (0.7ms) commit transaction
26567
+  (0.0ms) begin transaction
26568
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.422699"], ["email", "tremayne.bergstrom@ortizpfeffer.name"], ["name", "Mohamed Anderson"], ["password_hash", "2b76c9c25b416896ef6de0cc5b355f5b"], ["updated_at", "2015-01-14 01:07:01.422699"], ["username", "a968d8effbaefe53185afc1b99dc0001"]]
26569
+  (0.7ms) commit transaction
26570
+  (0.0ms) begin transaction
26571
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.424611"], ["email", "geraldine@bahringer.info"], ["name", "Bessie Gaylord II"], ["password_hash", "51d30e57158db7016e035864f407fb92"], ["updated_at", "2015-01-14 01:07:01.424611"], ["username", "88dbd03aabc103309cecf4e471be8260"]]
26572
+  (0.7ms) commit transaction
26573
+  (0.0ms) begin transaction
26574
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.426516"], ["email", "trenton@faysmith.org"], ["name", "Ena Jacobson"], ["password_hash", "b688ae1ad66d93ff2d7d2ee04a844aaa"], ["updated_at", "2015-01-14 01:07:01.426516"], ["username", "2dae170abf01560f6ce9aa88c1afebce"]]
26575
+  (0.7ms) commit transaction
26576
+  (0.0ms) begin transaction
26577
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.428391"], ["email", "macy@botsford.biz"], ["name", "Gudrun Weber"], ["password_hash", "ce979acacbaf195770bca4bbee7d3f83"], ["updated_at", "2015-01-14 01:07:01.428391"], ["username", "cfbe5080f33f437a6b02b340cfb0d7a8"]]
26578
+  (0.7ms) commit transaction
26579
+  (0.0ms) begin transaction
26580
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.430346"], ["email", "alvah_schuppe@bailey.net"], ["name", "Ms. Corrine King"], ["password_hash", "2e93a23a641f98dd2c6ec973a4ee3307"], ["updated_at", "2015-01-14 01:07:01.430346"], ["username", "6a452099212ca464689589bd3b3c23ef"]]
26581
+  (0.7ms) commit transaction
26582
+  (0.0ms) begin transaction
26583
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.432237"], ["email", "dario_rempel@leffler.com"], ["name", "Mrs. Loy Champlin"], ["password_hash", "4b638a1e3e20ad88b5bce0a504a9245b"], ["updated_at", "2015-01-14 01:07:01.432237"], ["username", "77f9a56acbdbdae61646ef5aed2dc7cc"]]
26584
+  (0.7ms) commit transaction
26585
+  (0.0ms) begin transaction
26586
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.434169"], ["email", "rosalia_cummings@roob.info"], ["name", "Caden Kling"], ["password_hash", "e97ec9ce6bbeb0919d90e16ab45c8d38"], ["updated_at", "2015-01-14 01:07:01.434169"], ["username", "a38fc528436a3b89df5be01d81a9e3a6"]]
26587
+  (0.7ms) commit transaction
26588
+  (0.0ms) begin transaction
26589
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.436152"], ["email", "titus_terry@huelwalker.com"], ["name", "Camylle Runte"], ["password_hash", "5299781ebbc6a66ee9fc84ac0e8b3669"], ["updated_at", "2015-01-14 01:07:01.436152"], ["username", "4fdfc515f927ad35c0ddf7d6b9b8925c"]]
26590
+  (0.7ms) commit transaction
26591
+  (0.0ms) begin transaction
26592
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.438119"], ["email", "jalon.stroman@stiedemann.net"], ["name", "Ms. Talon Anderson"], ["password_hash", "f32db9d59848bfeb0a824abf23563f36"], ["updated_at", "2015-01-14 01:07:01.438119"], ["username", "0e6e04493ce39532d4fc55ace79dde7a"]]
26593
+  (0.7ms) commit transaction
26594
+  (0.0ms) begin transaction
26595
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.439974"], ["email", "amelia_collier@farrell.org"], ["name", "Hayden Quigley"], ["password_hash", "d477fc48fed5f6a2ceedb4d028031faf"], ["updated_at", "2015-01-14 01:07:01.439974"], ["username", "d57343e94d12af6cbb7daa283e079ae2"]]
26596
+  (0.7ms) commit transaction
26597
+  (0.0ms) begin transaction
26598
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.441830"], ["email", "aric@roob.org"], ["name", "Juliana Becker"], ["password_hash", "a587e6399db39eaeb381aded4cacd326"], ["updated_at", "2015-01-14 01:07:01.441830"], ["username", "de50ff6df682d183a4a2806640884ebc"]]
26599
+  (0.7ms) commit transaction
26600
+  (0.0ms) begin transaction
26601
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.443704"], ["email", "chloe@marvin.name"], ["name", "Ana Durgan"], ["password_hash", "ee4deb5e6f03aedfd82e8507291780d2"], ["updated_at", "2015-01-14 01:07:01.443704"], ["username", "47d535c75b0256b9d9e96deeeae8d193"]]
26602
+  (0.7ms) commit transaction
26603
+  (0.0ms) begin transaction
26604
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.445564"], ["email", "lawrence@borer.info"], ["name", "Clotilde Stiedemann"], ["password_hash", "0d4fa3baa2566cbba5f118b4a5a97016"], ["updated_at", "2015-01-14 01:07:01.445564"], ["username", "55041339766c97938904ac4cd79e2d47"]]
26605
+  (0.7ms) commit transaction
26606
+  (0.0ms) begin transaction
26607
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.447720"], ["email", "sean.bernier@langworthschumm.info"], ["name", "Mateo Padberg"], ["password_hash", "6254693fd0f250f11b9df566634ecddb"], ["updated_at", "2015-01-14 01:07:01.447720"], ["username", "6e95a2817c494e8f555b67faa871acf4"]]
26608
+  (0.6ms) commit transaction
26609
+  (0.0ms) begin transaction
26610
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.449442"], ["email", "emelia@kovacek.org"], ["name", "Miss Thalia Roob"], ["password_hash", "53af2999dad089cb6fdc5c7f43c2b81b"], ["updated_at", "2015-01-14 01:07:01.449442"], ["username", "0a74ac92e24f6a09f58112c3628f1cf7"]]
26611
+  (0.7ms) commit transaction
26612
+  (0.0ms) begin transaction
26613
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.451339"], ["email", "gertrude_fahey@wisozk.org"], ["name", "Jacquelyn Renner MD"], ["password_hash", "e6e52c32cad0dccd05097d5253438a18"], ["updated_at", "2015-01-14 01:07:01.451339"], ["username", "4239cccbee949e678e8321f5617d4137"]]
26614
+  (0.7ms) commit transaction
26615
+  (0.0ms) begin transaction
26616
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.453439"], ["email", "daija@franeckiwatsica.biz"], ["name", "Bette Price"], ["password_hash", "f6c3074c50773b021ceda26984959b1b"], ["updated_at", "2015-01-14 01:07:01.453439"], ["username", "56129f340fab143c9626f0437a69dc9c"]]
26617
+  (0.8ms) commit transaction
26618
+  (0.0ms) begin transaction
26619
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.455830"], ["email", "kris_bahringer@muller.org"], ["name", "Winifred Hoppe"], ["password_hash", "d9437b48443f99eb634e3ae0ded7aea0"], ["updated_at", "2015-01-14 01:07:01.455830"], ["username", "3cb9a02280710e0eb8075e2e14735d92"]]
26620
+  (0.7ms) commit transaction
26621
+  (0.0ms) begin transaction
26622
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.457733"], ["email", "ken@murazik.info"], ["name", "Brenden Johnson IV"], ["password_hash", "208c9e6834bae459defdfe576ee69123"], ["updated_at", "2015-01-14 01:07:01.457733"], ["username", "80cc76ab32c3497dd6330ee0e99c3295"]]
26623
+  (0.6ms) commit transaction
26624
+  (0.0ms) begin transaction
26625
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.459487"], ["email", "mozelle@cole.org"], ["name", "Brennan Wyman"], ["password_hash", "4e11a526c48111da0f8cbcc8903494f2"], ["updated_at", "2015-01-14 01:07:01.459487"], ["username", "0d6bbecb1da3cab389aa8091281ced4f"]]
26626
+  (0.7ms) commit transaction
26627
+  (0.0ms) begin transaction
26628
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.461311"], ["email", "melvina@mills.org"], ["name", "Danika Murray"], ["password_hash", "4b709e42eec0c53db3bea087c77d92b2"], ["updated_at", "2015-01-14 01:07:01.461311"], ["username", "bb302bf8611b3beb663829af4e2c729f"]]
26629
+  (0.6ms) commit transaction
26630
+  (0.1ms) begin transaction
26631
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.463179"], ["email", "bernard@moen.biz"], ["name", "Dariana Ruecker"], ["password_hash", "d1de463007cb9aed093b656737e1a0db"], ["updated_at", "2015-01-14 01:07:01.463179"], ["username", "ff429908fea9471fee3d3f83445a55a6"]]
26632
+  (0.7ms) commit transaction
26633
+  (0.0ms) begin transaction
26634
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.465059"], ["email", "lia@adams.name"], ["name", "Damien Berge"], ["password_hash", "043e38689629e3933edd17abf8bdb4c4"], ["updated_at", "2015-01-14 01:07:01.465059"], ["username", "586fba37cebfdeb4e52f7f588ec6e898"]]
26635
+  (0.7ms) commit transaction
26636
+  (0.0ms) begin transaction
26637
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.466967"], ["email", "rachelle_kerluke@tromp.info"], ["name", "Camron DuBuque"], ["password_hash", "3a0f4e33046ddc345e90e3591f307c32"], ["updated_at", "2015-01-14 01:07:01.466967"], ["username", "eca2cb7a897d05043ee2d18e17fed281"]]
26638
+  (0.7ms) commit transaction
26639
+  (0.0ms) begin transaction
26640
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.468841"], ["email", "columbus@block.name"], ["name", "Declan Bergstrom"], ["password_hash", "ddaaa9c5fe3ccbd4757adf64d886456a"], ["updated_at", "2015-01-14 01:07:01.468841"], ["username", "d8e1405491098ab9aeb54dbcbba66be1"]]
26641
+  (0.8ms) commit transaction
26642
+  (0.0ms) begin transaction
26643
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.470929"], ["email", "hugh@gibson.org"], ["name", "Anita Daniel"], ["password_hash", "f22eca0de61c2d00cf0a19fc5cfbf38e"], ["updated_at", "2015-01-14 01:07:01.470929"], ["username", "f07a3cb85867e2aba770ade84d62afad"]]
26644
+  (0.7ms) commit transaction
26645
+  (0.0ms) begin transaction
26646
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.472831"], ["email", "hailey.schiller@webercummerata.info"], ["name", "Shanelle Wolff"], ["password_hash", "427108f19bac71f31fd5661cf52969aa"], ["updated_at", "2015-01-14 01:07:01.472831"], ["username", "1e90fc19755b43fbd3a3924123f71d9e"]]
26647
+  (0.7ms) commit transaction
26648
+  (0.0ms) begin transaction
26649
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.474708"], ["email", "billy_gerhold@runolfsdottir.info"], ["name", "Sydnie Stamm"], ["password_hash", "a6482684eaa20855da014dd23c716ca6"], ["updated_at", "2015-01-14 01:07:01.474708"], ["username", "6e4260fdbf9d0b82ed3022fe03974d30"]]
26650
+  (0.7ms) commit transaction
26651
+  (0.0ms) begin transaction
26652
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.476576"], ["email", "violet_jaskolski@shieldsmonahan.org"], ["name", "Kali Weimann"], ["password_hash", "c752d3ebee8c32bf57d6f896c4d2b1a0"], ["updated_at", "2015-01-14 01:07:01.476576"], ["username", "8f1d6cd6441a14d28deff0ab1586b052"]]
26653
+  (0.6ms) commit transaction
26654
+  (0.0ms) begin transaction
26655
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.478419"], ["email", "enoch@bradtke.biz"], ["name", "Herminia McGlynn"], ["password_hash", "2466f44d578615a589c99e313bec5d0c"], ["updated_at", "2015-01-14 01:07:01.478419"], ["username", "1293966b87fd9b473227d28db043062d"]]
26656
+  (0.6ms) commit transaction
26657
+  (0.0ms) begin transaction
26658
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.480269"], ["email", "grace@mohr.org"], ["name", "Hilda McCullough"], ["password_hash", "d49cfdafdf9143220dbd1166ea539b1e"], ["updated_at", "2015-01-14 01:07:01.480269"], ["username", "d9806f6a0ddbe73392c9a22e64d555a8"]]
26659
+  (0.7ms) commit transaction
26660
+  (0.0ms) begin transaction
26661
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.482365"], ["email", "lesley.bechtelar@schneiderruel.com"], ["name", "Vince Strosin"], ["password_hash", "9be6e77f9aab81d59025b3245e8029f1"], ["updated_at", "2015-01-14 01:07:01.482365"], ["username", "029ee943df0052906109884e7f2ec127"]]
26662
+  (0.6ms) commit transaction
26663
+  (0.0ms) begin transaction
26664
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.484156"], ["email", "daphnee.hirthe@vandervort.name"], ["name", "Nicolette Skiles"], ["password_hash", "35bf166c697264c565499c3007466058"], ["updated_at", "2015-01-14 01:07:01.484156"], ["username", "e5067ed57a4a02a63c5712aef071c033"]]
26665
+  (0.6ms) commit transaction
26666
+  (0.0ms) begin transaction
26667
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.485974"], ["email", "isaac.luettgen@carroll.net"], ["name", "Adell Welch"], ["password_hash", "604351125def5595c04240dd490ddae6"], ["updated_at", "2015-01-14 01:07:01.485974"], ["username", "4aa1e4a04042bca4b56550f017bba5e8"]]
26668
+  (0.7ms) commit transaction
26669
+  (0.0ms) begin transaction
26670
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.487868"], ["email", "leda.harvey@kaulke.biz"], ["name", "Maryse Lang MD"], ["password_hash", "ae02d8882b90b19774de10ee1cc2676d"], ["updated_at", "2015-01-14 01:07:01.487868"], ["username", "e84b3f7037a5009511dc6419e60a1bca"]]
26671
+  (0.7ms) commit transaction
26672
+  (0.0ms) begin transaction
26673
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.489775"], ["email", "cordia_dickinson@marquardtchristiansen.net"], ["name", "Ophelia Kilback"], ["password_hash", "37db2748c7c77bc68a63548611a6877d"], ["updated_at", "2015-01-14 01:07:01.489775"], ["username", "cefccfaabbdf07eb3887326435b80cf6"]]
26674
+  (0.7ms) commit transaction
26675
+  (0.0ms) begin transaction
26676
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.491707"], ["email", "perry.jerde@bradtke.net"], ["name", "Will Rippin"], ["password_hash", "a27588d730e42a5aa1b40b406d689aee"], ["updated_at", "2015-01-14 01:07:01.491707"], ["username", "08468f6116cc59563b10d40828374a6f"]]
26677
+  (0.6ms) commit transaction
26678
+  (0.0ms) begin transaction
26679
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.493416"], ["email", "aniya.rice@starkkuhn.biz"], ["name", "Oleta Lehner"], ["password_hash", "3a1ece52c1fa04b9d818fe0ebfb03020"], ["updated_at", "2015-01-14 01:07:01.493416"], ["username", "23157d23d7fb58569771c79634dd533a"]]
26680
+  (0.7ms) commit transaction
26681
+  (0.1ms) begin transaction
26682
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.495313"], ["email", "caidy@lynchheller.org"], ["name", "Kacey Mann"], ["password_hash", "e2b238c1766fee541faec9c6b5e3fff3"], ["updated_at", "2015-01-14 01:07:01.495313"], ["username", "282706424172e8defde92ca69d90a3be"]]
26683
+  (0.7ms) commit transaction
26684
+  (0.1ms) begin transaction
26685
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.497198"], ["email", "evert@wehner.net"], ["name", "Elijah Lang"], ["password_hash", "ea7c35832878aeddab9ac0db87ddede3"], ["updated_at", "2015-01-14 01:07:01.497198"], ["username", "98baa53d04860f0781015fa38a85a65f"]]
26686
+  (0.6ms) commit transaction
26687
+  (0.0ms) begin transaction
26688
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.499010"], ["email", "sincere.champlin@brauntillman.net"], ["name", "Zella Rohan"], ["password_hash", "985797cc772ce0c146343a7c877061e9"], ["updated_at", "2015-01-14 01:07:01.499010"], ["username", "727ddb22d4df2382a94c380edf23da55"]]
26689
+  (0.7ms) commit transaction
26690
+  (0.0ms) begin transaction
26691
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.500824"], ["email", "kamron.weimann@mckenziemuller.info"], ["name", "Schuyler Bailey"], ["password_hash", "5d03b1e9a130b7189518326684e26e92"], ["updated_at", "2015-01-14 01:07:01.500824"], ["username", "e04b527b9e91e6ffa6b6f9d024757504"]]
26692
+  (0.7ms) commit transaction
26693
+  (0.0ms) begin transaction
26694
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.502816"], ["email", "loren.beier@dickibode.com"], ["name", "Adella Grant"], ["password_hash", "9b126cbb261363db3911cec763935287"], ["updated_at", "2015-01-14 01:07:01.502816"], ["username", "71f6a9171ae1f6013864a14a58f0b699"]]
26695
+  (0.6ms) commit transaction
26696
+  (0.0ms) begin transaction
26697
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.504478"], ["email", "carol.schaden@hintz.name"], ["name", "Trystan Schiller"], ["password_hash", "20ed487bed2301b14a70f3f2cc9754e0"], ["updated_at", "2015-01-14 01:07:01.504478"], ["username", "9dae85712321bb5b942400a43c9ea320"]]
26698
+  (0.6ms) commit transaction
26699
+  (0.0ms) begin transaction
26700
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.506275"], ["email", "kaelyn.adams@torphy.biz"], ["name", "Mr. Verner Kilback"], ["password_hash", "9d4f227680879fb587045d8e879c2407"], ["updated_at", "2015-01-14 01:07:01.506275"], ["username", "e7505d2ef1a911a59de3250cf32a6539"]]
26701
+  (0.7ms) commit transaction
26702
+  (0.0ms) begin transaction
26703
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.508093"], ["email", "yolanda@rogahn.com"], ["name", "Ms. Brayan O'Keefe"], ["password_hash", "d1988e0f6816b9a85c7571e01776bd96"], ["updated_at", "2015-01-14 01:07:01.508093"], ["username", "6ee20fd693d75a890548b359d567d5b3"]]
26704
+  (0.6ms) commit transaction
26705
+  (0.0ms) begin transaction
26706
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.509864"], ["email", "columbus_cain@jaskolskischoen.biz"], ["name", "Dr. Pink Beatty"], ["password_hash", "65715e31ead580b331b23b733427eedd"], ["updated_at", "2015-01-14 01:07:01.509864"], ["username", "3a1edbdb21dfd40fb31ac5e576662e2a"]]
26707
+  (0.6ms) commit transaction
26708
+  (0.0ms) begin transaction
26709
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.511661"], ["email", "arlie.hartmann@labadie.name"], ["name", "Kim Mann"], ["password_hash", "26264b22da6d76dd5d7fed4b2383de54"], ["updated_at", "2015-01-14 01:07:01.511661"], ["username", "869901520b111fb92ff6f7deaca95423"]]
26710
+  (0.6ms) commit transaction
26711
+  (0.0ms) begin transaction
26712
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.513445"], ["email", "shad@keebler.org"], ["name", "Juliana Greenholt I"], ["password_hash", "e51cf959f1996bde1b4350828b40e2d0"], ["updated_at", "2015-01-14 01:07:01.513445"], ["username", "152f7007b2722ad12b8a76bdc9f73860"]]
26713
+  (0.7ms) commit transaction
26714
+  (0.0ms) begin transaction
26715
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.515230"], ["email", "christy.ferry@kuhic.net"], ["name", "Layne Olson PhD"], ["password_hash", "2a864ecb59a018cf08e2f51d21736dce"], ["updated_at", "2015-01-14 01:07:01.515230"], ["username", "2309842e33ef00d7b58dcdea6a45a60e"]]
26716
+  (0.7ms) commit transaction
26717
+  (0.0ms) begin transaction
26718
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.517026"], ["email", "davon@swaniawski.org"], ["name", "Mallie Ritchie"], ["password_hash", "5bba61eee4c4b758dc50da57f3149ac6"], ["updated_at", "2015-01-14 01:07:01.517026"], ["username", "abbee82eae29082df0e0fb3efba2ebc6"]]
26719
+  (0.7ms) commit transaction
26720
+  (0.0ms) begin transaction
26721
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.518914"], ["email", "eileen.zboncak@ryan.net"], ["name", "Pamela Gleichner MD"], ["password_hash", "534d4f3bed1a5060c2e1729385194c0b"], ["updated_at", "2015-01-14 01:07:01.518914"], ["username", "b079c08053ddc9bcacf4926382b8e349"]]
26722
+  (0.7ms) commit transaction
26723
+  (0.0ms) begin transaction
26724
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.520865"], ["email", "beryl_hickle@lueilwitz.net"], ["name", "Isidro Herman I"], ["password_hash", "4c48cb9f9e7667ba860c889aa37da7ce"], ["updated_at", "2015-01-14 01:07:01.520865"], ["username", "7d5765f882eaf742f50819987234b8cb"]]
26725
+  (0.7ms) commit transaction
26726
+  (0.0ms) begin transaction
26727
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.522803"], ["email", "dereck.west@keeling.name"], ["name", "Miss Marian Marvin"], ["password_hash", "2edf6678a7c1023bb33baac80bfd1c37"], ["updated_at", "2015-01-14 01:07:01.522803"], ["username", "4fed7b1e00e223c8b783c594ebea5ed4"]]
26728
+  (0.6ms) commit transaction
26729
+  (0.0ms) begin transaction
26730
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.524536"], ["email", "jason@wisoky.name"], ["name", "Gene Lindgren"], ["password_hash", "76d0d69ffa124ac2ff8e273e93c064ab"], ["updated_at", "2015-01-14 01:07:01.524536"], ["username", "74cc8ca3d2bc3ba9e2c506b0791898cf"]]
26731
+  (0.6ms) commit transaction
26732
+  (0.0ms) begin transaction
26733
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.526189"], ["email", "alexandrea@ornritchie.name"], ["name", "Elton Grant DVM"], ["password_hash", "edd11e7acb398d2d56b5a06c054e2fe9"], ["updated_at", "2015-01-14 01:07:01.526189"], ["username", "6efcf4e8baf751d5bc7f287bedce3e24"]]
26734
+  (0.7ms) commit transaction
26735
+  (0.0ms) begin transaction
26736
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.527978"], ["email", "khalid_larkin@dicki.org"], ["name", "Mr. Keaton Lang"], ["password_hash", "4678bf0a5e338188383e70c59ff71c3b"], ["updated_at", "2015-01-14 01:07:01.527978"], ["username", "faab659adf12f6617d33695dbc11e4b2"]]
26737
+  (0.7ms) commit transaction
26738
+  (0.0ms) begin transaction
26739
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.529792"], ["email", "friedrich@kerlukehickle.biz"], ["name", "Hayley Rolfson"], ["password_hash", "f626e49674685e0f58baed1f56eafffc"], ["updated_at", "2015-01-14 01:07:01.529792"], ["username", "866e6961d2cfc8d74b6aa0e874a9f90d"]]
26740
+  (0.7ms) commit transaction
26741
+  (0.0ms) begin transaction
26742
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.531637"], ["email", "justen@parisian.name"], ["name", "Ms. Sedrick Bergstrom"], ["password_hash", "00d16842809bee73ce37e6b9b4f9e0c1"], ["updated_at", "2015-01-14 01:07:01.531637"], ["username", "238df2b1da38fcd3e956fa9cdc30490b"]]
26743
+  (0.7ms) commit transaction
26744
+  (0.0ms) begin transaction
26745
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.533595"], ["email", "cleve_vandervort@schowalterstehr.name"], ["name", "Reinhold Kovacek"], ["password_hash", "2e276353f08d75961adec09abda294af"], ["updated_at", "2015-01-14 01:07:01.533595"], ["username", "1804d15b85b40f445df77270b385a2ac"]]
26746
+  (0.7ms) commit transaction
26747
+  (0.0ms) begin transaction
26748
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.535580"], ["email", "raphaelle.paucek@luettgen.net"], ["name", "Dr. Ashtyn Heathcote"], ["password_hash", "9ec3a36689ed0d3ebeb7282ba7a0f7a5"], ["updated_at", "2015-01-14 01:07:01.535580"], ["username", "63b49cef10d803c382192d453e84a4b7"]]
26749
+  (0.6ms) commit transaction
26750
+  (0.0ms) begin transaction
26751
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.537301"], ["email", "casimir_beier@schneiderfisher.info"], ["name", "Name Wilderman"], ["password_hash", "0c76a12860d553f97df7379aa1a9b334"], ["updated_at", "2015-01-14 01:07:01.537301"], ["username", "0b909205c45cdc1c14e681b7e7253e7d"]]
26752
+  (0.6ms) commit transaction
26753
+  (0.0ms) begin transaction
26754
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.539113"], ["email", "bradley_damore@murray.info"], ["name", "Johathan Marvin"], ["password_hash", "1509e9faf574ce1179a22e775f64158d"], ["updated_at", "2015-01-14 01:07:01.539113"], ["username", "c9e3eb097f3a145febf547747d697edd"]]
26755
+  (0.7ms) commit transaction
26756
+  (0.0ms) begin transaction
26757
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.540971"], ["email", "hal@littel.net"], ["name", "Maverick Krajcik"], ["password_hash", "0d2599ff5f1e55c6a316be789adf0a2f"], ["updated_at", "2015-01-14 01:07:01.540971"], ["username", "5390fa0e20b6dd9d6daf12e820c880d9"]]
26758
+  (0.7ms) commit transaction
26759
+  (0.0ms) begin transaction
26760
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.542850"], ["email", "holden@oconnelllarkin.com"], ["name", "Chelsie Kunde II"], ["password_hash", "3e47d7641a2da210d89da252044a210b"], ["updated_at", "2015-01-14 01:07:01.542850"], ["username", "757fa511f6da58d53908eeda8bd21c47"]]
26761
+  (0.7ms) commit transaction
26762
+  (0.0ms) begin transaction
26763
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.544721"], ["email", "kenny.murray@rutherforddare.org"], ["name", "Lelah Pacocha"], ["password_hash", "2be6bda930819ba6e0d8d10cbd956a90"], ["updated_at", "2015-01-14 01:07:01.544721"], ["username", "3691b8bcadc047e335e9e3484f4827f5"]]
26764
+  (0.7ms) commit transaction
26765
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."name" LIKE '% doe%'
26766
+  (0.0ms) begin transaction
26767
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.548001"], ["email", "john@doe.com"], ["name", "John Doe"], ["password_hash", "79e777949dafa622a23ba4886bbe152f"], ["updated_at", "2015-01-14 01:07:01.548001"], ["username", "doejohn"]]
26768
+  (0.7ms) commit transaction
26769
+  (0.0ms) begin transaction
26770
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.549692"], ["email", "jane@doe.com"], ["name", "Jane Doe"], ["password_hash", "dea63911671e813a4b451f3ca4381b1f"], ["updated_at", "2015-01-14 01:07:01.549692"], ["username", "doejane"]]
26771
+  (0.7ms) commit transaction
26772
+  (0.0ms) begin transaction
26773
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:07:01.551394"], ["email", "jack@doe.com"], ["name", "Jack Doe"], ["password_hash", "e60d556774af600f4375404bc391ed8f"], ["updated_at", "2015-01-14 01:07:01.551394"], ["username", "doejack"]]
26774
+  (0.7ms) commit transaction
26775
+  (0.1ms) begin transaction
26776
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
26777
+  (0.0ms) commit transaction
26778
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE '% dOe%')) ORDER BY "users"."name" ASC
26779
+  (0.0ms) begin transaction
26780
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
26781
+  (0.0ms) commit transaction
26782
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%')) ORDER BY "users"."name" ASC
26783
+  (0.0ms) begin transaction
26784
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
26785
+  (0.0ms) commit transaction
26786
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%')) ORDER BY "users"."name" ASC
26787
+  (0.0ms) begin transaction
26788
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'DoE%'))
26789
+  (0.0ms) commit transaction
26790
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'DoE%')) ORDER BY "users"."created_at" ASC, "users"."name" ASC
26791
+  (0.0ms) begin transaction
26792
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'dOe%'))
26793
+  (0.0ms) commit transaction
26794
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'dOe%')) ORDER BY "users"."created_at" DESC, "users"."name" DESC
26795
+  (0.1ms) SELECT COUNT(*) FROM "users"
26796
+  (0.0ms) begin transaction
26797
+  (0.1ms) SELECT COUNT(*) FROM "users"
26798
+  (0.0ms) commit transaction
26799
+ User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC
26800
+  (0.0ms) begin transaction
26801
+  (0.1ms) SELECT COUNT(*) FROM "users"
26802
+  (0.0ms) commit transaction
26803
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 0
26804
+  (0.0ms) begin transaction
26805
+  (0.1ms) SELECT COUNT(*) FROM "users"
26806
+  (0.0ms) commit transaction
26807
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 0
26808
+  (0.0ms) begin transaction
26809
+  (0.1ms) SELECT COUNT(*) FROM "users"
26810
+  (0.0ms) commit transaction
26811
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 20
26812
+  (0.0ms) begin transaction
26813
+  (0.1ms) SELECT COUNT(*) FROM "users"
26814
+  (0.0ms) commit transaction
26815
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 40
26816
+  (0.0ms) begin transaction
26817
+  (0.1ms) SELECT COUNT(*) FROM "users"
26818
+  (0.0ms) commit transaction
26819
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 60
26820
+  (0.0ms) begin transaction
26821
+  (0.1ms) SELECT COUNT(*) FROM "users"
26822
+  (0.0ms) commit transaction
26823
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 80
26824
+  (0.0ms) begin transaction
26825
+  (0.1ms) SELECT COUNT(*) FROM "users"
26826
+  (0.0ms) commit transaction
26827
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 19980
26828
+  (1.7ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
26829
+  (0.1ms) select sqlite_version(*)
26830
+  (1.0ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
26831
+  (0.9ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
26832
+  (0.9ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
26833
+  (0.1ms) SELECT sql
26834
+ FROM sqlite_master
26835
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26836
+ UNION ALL
26837
+ SELECT sql
26838
+ FROM sqlite_temp_master
26839
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26840
+
26841
+  (0.8ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
26842
+  (0.1ms) SELECT sql
26843
+ FROM sqlite_master
26844
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
26845
+ UNION ALL
26846
+ SELECT sql
26847
+ FROM sqlite_temp_master
26848
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
26849
+
26850
+  (0.1ms)  SELECT sql
26851
+ FROM sqlite_master
26852
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26853
+ UNION ALL
26854
+ SELECT sql
26855
+ FROM sqlite_temp_master
26856
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26857
+ 
26858
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
26859
+  (0.8ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
26860
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
26861
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
26862
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
26863
+  (0.1ms)  SELECT sql
26864
+ FROM sqlite_master
26865
+ WHERE name='index_users_on_email' AND type='index'
26866
+ UNION ALL
26867
+ SELECT sql
26868
+ FROM sqlite_temp_master
26869
+ WHERE name='index_users_on_email' AND type='index'
26870
+ 
26871
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
26872
+  (0.1ms)  SELECT sql
26873
+ FROM sqlite_master
26874
+ WHERE name='index_users_on_name' AND type='index'
26875
+ UNION ALL
26876
+ SELECT sql
26877
+ FROM sqlite_temp_master
26878
+ WHERE name='index_users_on_name' AND type='index'
26879
+ 
26880
+  (0.1ms) SELECT sql
26881
+ FROM sqlite_master
26882
+ WHERE name='index_users_on_email' AND type='index'
26883
+ UNION ALL
26884
+ SELECT sql
26885
+ FROM sqlite_temp_master
26886
+ WHERE name='index_users_on_email' AND type='index'
26887
+
26888
+  (0.8ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
26889
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
26890
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26891
+  (0.1ms) SELECT version FROM "schema_migrations"
26892
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
26893
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
26894
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26895
+  (1.5ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
26896
+  (0.1ms) select sqlite_version(*)
26897
+  (0.9ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
26898
+  (0.7ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
26899
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
26900
+  (0.1ms) SELECT sql
26901
+ FROM sqlite_master
26902
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26903
+ UNION ALL
26904
+ SELECT sql
26905
+ FROM sqlite_temp_master
26906
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26907
+
26908
+  (0.7ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
26909
+  (0.1ms) SELECT sql
26910
+ FROM sqlite_master
26911
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
26912
+ UNION ALL
26913
+ SELECT sql
26914
+ FROM sqlite_temp_master
26915
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
26916
+
26917
+  (0.1ms)  SELECT sql
26918
+ FROM sqlite_master
26919
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26920
+ UNION ALL
26921
+ SELECT sql
26922
+ FROM sqlite_temp_master
26923
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
26924
+ 
26925
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
26926
+  (0.7ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
26927
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
26928
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
26929
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
26930
+  (0.1ms)  SELECT sql
26931
+ FROM sqlite_master
26932
+ WHERE name='index_users_on_email' AND type='index'
26933
+ UNION ALL
26934
+ SELECT sql
26935
+ FROM sqlite_temp_master
26936
+ WHERE name='index_users_on_email' AND type='index'
26937
+ 
26938
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
26939
+  (0.1ms)  SELECT sql
26940
+ FROM sqlite_master
26941
+ WHERE name='index_users_on_name' AND type='index'
26942
+ UNION ALL
26943
+ SELECT sql
26944
+ FROM sqlite_temp_master
26945
+ WHERE name='index_users_on_name' AND type='index'
26946
+ 
26947
+  (0.1ms) SELECT sql
26948
+ FROM sqlite_master
26949
+ WHERE name='index_users_on_email' AND type='index'
26950
+ UNION ALL
26951
+ SELECT sql
26952
+ FROM sqlite_temp_master
26953
+ WHERE name='index_users_on_email' AND type='index'
26954
+
26955
+  (0.8ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
26956
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
26957
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26958
+  (0.1ms) SELECT version FROM "schema_migrations"
26959
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
26960
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
26961
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26962
+  (0.1ms) begin transaction
26963
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.126636"], ["email", "concepcion.wunsch@glover.info"], ["name", "Gerardo Donnelly DVM"], ["password_hash", "33b11e1e7fe7cfe424ceba948194ebe2"], ["updated_at", "2015-01-14 01:15:50.126636"], ["username", "f2ce1d80ffa8ec6329f2959bae439e9b"]]
26964
+  (1.6ms) commit transaction
26965
+  (0.1ms) begin transaction
26966
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.132539"], ["email", "alexandro.dickinson@gerlach.name"], ["name", "Terrell Labadie"], ["password_hash", "6eb9dc5036e1a2b23f565be4b48dd76a"], ["updated_at", "2015-01-14 01:15:50.132539"], ["username", "55ad8ef15bff0bbacb4ecac9e348def2"]]
26967
+  (0.8ms) commit transaction
26968
+  (0.1ms) begin transaction
26969
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.138194"], ["email", "leopold_friesen@abbottbeer.info"], ["name", "Josue O'Keefe"], ["password_hash", "484433b0410c0e953181480c61acb004"], ["updated_at", "2015-01-14 01:15:50.138194"], ["username", "a8b58b7bf959c5300ae057957262b143"]]
26970
+  (0.8ms) commit transaction
26971
+  (0.0ms) begin transaction
26972
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.140780"], ["email", "elda@lindgren.biz"], ["name", "Diego Grady Jr."], ["password_hash", "66d979a8c5ecb1ff42c082473a34de53"], ["updated_at", "2015-01-14 01:15:50.140780"], ["username", "fb31ef85f3bb0f0f96d9484d13136dc9"]]
26973
+  (0.7ms) commit transaction
26974
+  (0.0ms) begin transaction
26975
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.143893"], ["email", "fletcher@langworth.info"], ["name", "Carlo Ankunding"], ["password_hash", "a2301891aa74edb8d7b2c8d37a4af237"], ["updated_at", "2015-01-14 01:15:50.143893"], ["username", "04ebb2fb6e36640d0c11262607be11bf"]]
26976
+  (0.7ms) commit transaction
26977
+  (0.0ms) begin transaction
26978
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.145970"], ["email", "natasha.block@wisoky.org"], ["name", "Ms. Colby Pouros"], ["password_hash", "0277364894d004ec3a4b41a5d04424f9"], ["updated_at", "2015-01-14 01:15:50.145970"], ["username", "be667ce4f7494da75b5e1481a70680d3"]]
26979
+  (0.7ms) commit transaction
26980
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
26981
+  (0.0ms) begin transaction
26982
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.159779"], ["email", "moshe.huel@coleharris.info"], ["name", "Rhianna Kirlin"], ["password_hash", "005417dc825ef255ea17dc6667e4bd04"], ["updated_at", "2015-01-14 01:15:50.159779"], ["username", "eab2dc7496a85b31a9cd63fc6cd8188e"]]
26983
+  (0.6ms) commit transaction
26984
+  (0.0ms) begin transaction
26985
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.161946"], ["email", "ben_legros@balistreri.name"], ["name", "Caleb Sawayn DVM"], ["password_hash", "1eae933c1d355a68ad5c125f05f2f223"], ["updated_at", "2015-01-14 01:15:50.161946"], ["username", "99606af03933f0bee7815ae1cea3fc45"]]
26986
+  (0.7ms) commit transaction
26987
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
26988
+  (0.1ms) begin transaction
26989
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.165812"], ["email", "andrew_raynor@ebert.info"], ["name", "Mrs. Christy Ziemann"], ["password_hash", "454908fb9cff88e3180414b6ed99e570"], ["updated_at", "2015-01-14 01:15:50.165812"], ["username", "c1b22970a35561b65e144c3730e22bf2"]]
26990
+  (0.7ms) commit transaction
26991
+  (0.0ms) begin transaction
26992
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.167965"], ["email", "rita@damore.org"], ["name", "Arne Bins"], ["password_hash", "dfc6cb28daa21ccb759de60a99cff80c"], ["updated_at", "2015-01-14 01:15:50.167965"], ["username", "893d0e6d1be688b4f6d4ac1f72bebd16"]]
26993
+  (0.7ms) commit transaction
26994
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 ORDER BY "users"."id" ASC LIMIT 1
26995
+  (0.0ms) begin transaction
26996
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.189290"], ["email", "patrick@ernser.net"], ["name", "Raul Johnston"], ["password_hash", "dfc6256083a592bf87823d7cc057b1e1"], ["updated_at", "2015-01-14 01:15:50.189290"], ["username", "e81202779f70e50006521b63532d7eb1"]]
26997
+  (0.7ms) commit transaction
26998
+  (0.0ms) begin transaction
26999
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.192102"], ["email", "rodger@klingsmitham.biz"], ["name", "Garry Hilpert"], ["password_hash", "3dd5200ddd5714053880c32728f85c25"], ["updated_at", "2015-01-14 01:15:50.192102"], ["username", "59e1735f9dbd57bff9bf40a2b51923ed"]]
27000
+  (0.7ms) commit transaction
27001
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 12 ORDER BY "users"."id" ASC LIMIT 1
27002
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
27003
+  (0.0ms) begin transaction
27004
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.196110"], ["email", "ruel@kilbackframi.info"], ["name", "Annabell Jakubowski"], ["password_hash", "6ae1ca8e7e7ce05f221d03f515082cf2"], ["updated_at", "2015-01-14 01:15:50.196110"], ["username", "a67f54f4ea9dba1c24c42b52a7901e92"]]
27005
+  (0.9ms) commit transaction
27006
+  (0.1ms) begin transaction
27007
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.198323"], ["email", "felton_conn@krajciklabadie.net"], ["name", "Mrs. Xavier Tremblay"], ["password_hash", "a925cb768bb4213b09a7ceec91ae7683"], ["updated_at", "2015-01-14 01:15:50.198323"], ["username", "bfe7f189803d6104c7b4924f3631045c"]]
27008
+  (0.7ms) commit transaction
27009
+  (0.0ms) begin transaction
27010
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.200586"], ["email", "fredrick.dickinson@heelfunk.net"], ["name", "Ole Paucek"], ["password_hash", "83c2eb8682da30fa6c5a0d84def02544"], ["updated_at", "2015-01-14 01:15:50.200586"], ["username", "4632686079ec53ad92e72991de7809a7"]]
27011
+  (0.7ms) commit transaction
27012
+  (0.0ms) begin transaction
27013
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.202511"], ["email", "mable@bergstromfisher.info"], ["name", "Bettie Kutch"], ["password_hash", "bec805c02937111d9be02bfe0223d47f"], ["updated_at", "2015-01-14 01:15:50.202511"], ["username", "a3982840c3daeaa8ccf52cfcce131a68"]]
27014
+  (0.7ms) commit transaction
27015
+  (0.0ms) begin transaction
27016
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.204433"], ["email", "llewellyn@schuster.org"], ["name", "Kayley Gibson"], ["password_hash", "7200d5629f878dc924ffb3da10ecc40e"], ["updated_at", "2015-01-14 01:15:50.204433"], ["username", "4371b2c208a52ab08000a0fc181e8d29"]]
27017
+  (0.7ms) commit transaction
27018
+  (0.0ms) begin transaction
27019
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.206314"], ["email", "delphia@koch.biz"], ["name", "Lela Huels"], ["password_hash", "4e6bf7718b5078219915045dbf3aaac1"], ["updated_at", "2015-01-14 01:15:50.206314"], ["username", "9ce64e9bb93c614bb701b654acbd580d"]]
27020
+  (0.6ms) commit transaction
27021
+  (0.0ms) begin transaction
27022
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.208193"], ["email", "jazmyn@cain.name"], ["name", "Corene Schumm"], ["password_hash", "bbc19f30bc20e83281d301a0bb738ee1"], ["updated_at", "2015-01-14 01:15:50.208193"], ["username", "011b4a4aef36529110985aa792c27c2b"]]
27023
+  (0.7ms) commit transaction
27024
+  (0.0ms) begin transaction
27025
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.210093"], ["email", "rosa.klocko@gleasonsawayn.info"], ["name", "Gabrielle Borer"], ["password_hash", "a4db5c9e1fe92e0f4fb660fc45e4e703"], ["updated_at", "2015-01-14 01:15:50.210093"], ["username", "ca603993b9a07bf613f5a8d678a2f7ec"]]
27026
+  (0.7ms) commit transaction
27027
+  (0.0ms) begin transaction
27028
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.212503"], ["email", "jada_balistreri@gulgowski.biz"], ["name", "Shawna Wisoky"], ["password_hash", "dc08513873811731185a139479bfc712"], ["updated_at", "2015-01-14 01:15:50.212503"], ["username", "a4bd75d30be62a13c1996416f3b36382"]]
27029
+  (0.7ms) commit transaction
27030
+  (0.0ms) begin transaction
27031
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.214405"], ["email", "aliza@quitzonmosciski.name"], ["name", "Moshe Lind"], ["password_hash", "0e115215c3b124c70a934d95b1ab8722"], ["updated_at", "2015-01-14 01:15:50.214405"], ["username", "0e8631cb47891ce0a7125b98573aec70"]]
27032
+  (0.7ms) commit transaction
27033
+  (0.0ms) begin transaction
27034
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.216175"], ["email", "kelvin.macejkovic@grant.name"], ["name", "Sabina Effertz"], ["password_hash", "900a9a6859752b8c5a49051f164dfe80"], ["updated_at", "2015-01-14 01:15:50.216175"], ["username", "c9afce43938a0dc73b25965a5b605824"]]
27035
+  (0.7ms) commit transaction
27036
+  (0.0ms) begin transaction
27037
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.217928"], ["email", "rafaela@okuneva.info"], ["name", "Miss Leif Schumm"], ["password_hash", "a6949c2fafd9db6a572bfe382722cdb4"], ["updated_at", "2015-01-14 01:15:50.217928"], ["username", "d3b4e1f683315a00356cf4a2ab1d25ca"]]
27038
+  (0.7ms) commit transaction
27039
+  (0.0ms) begin transaction
27040
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.219718"], ["email", "lera@hayes.net"], ["name", "Misael Purdy"], ["password_hash", "e2256eff5e3df4c109183a67fcde4968"], ["updated_at", "2015-01-14 01:15:50.219718"], ["username", "ea81b77af1a3187c91950bf6ae83ee47"]]
27041
+  (1.8ms) commit transaction
27042
+  (0.0ms) begin transaction
27043
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.222667"], ["email", "torrey_kling@brakus.name"], ["name", "Mrs. Broderick Abbott"], ["password_hash", "bd7213e61a671f0538a9c2908754216f"], ["updated_at", "2015-01-14 01:15:50.222667"], ["username", "83de23546d5085f391087e2d9abef525"]]
27044
+  (0.6ms) commit transaction
27045
+  (0.0ms) begin transaction
27046
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.224358"], ["email", "corene@senger.net"], ["name", "Hollis Beier"], ["password_hash", "9e983fe407af22bc7e30ffe232834df5"], ["updated_at", "2015-01-14 01:15:50.224358"], ["username", "fb63181f60fdc5de0cc9e4bb5cf3069b"]]
27047
+  (0.7ms) commit transaction
27048
+  (0.1ms) begin transaction
27049
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.226182"], ["email", "donny@rutherford.net"], ["name", "Dessie Heathcote"], ["password_hash", "23a159ac95554a6d8794ddcc8fe301f8"], ["updated_at", "2015-01-14 01:15:50.226182"], ["username", "08c936799ca125606509ba6f8bfa5da3"]]
27050
+  (0.7ms) commit transaction
27051
+  (0.0ms) begin transaction
27052
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.227984"], ["email", "lilly@kingkunde.org"], ["name", "Camron Lehner"], ["password_hash", "20ae78932abb419a09586f65c4aa804d"], ["updated_at", "2015-01-14 01:15:50.227984"], ["username", "8e4673d0a7b6130ff9978ecd18fc1d97"]]
27053
+  (0.7ms) commit transaction
27054
+  (0.0ms) begin transaction
27055
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.229773"], ["email", "johann.kuhlman@hayes.net"], ["name", "Dr. Drake Botsford"], ["password_hash", "879fa377b98e9a93e64b217d7f9cdf14"], ["updated_at", "2015-01-14 01:15:50.229773"], ["username", "4b50875c54669482709c7353f3a5183d"]]
27056
+  (0.7ms) commit transaction
27057
+  (0.0ms) begin transaction
27058
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.231645"], ["email", "maci@schowalter.com"], ["name", "Tremayne Wiza"], ["password_hash", "e12e7fb78326ad98fcb5d5c3480c1cf9"], ["updated_at", "2015-01-14 01:15:50.231645"], ["username", "feea2e95bf854d3f35c2694c0c9b9cf1"]]
27059
+  (0.8ms) commit transaction
27060
+  (0.1ms) begin transaction
27061
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.233726"], ["email", "ena@bernier.biz"], ["name", "Toni Doyle IV"], ["password_hash", "fdd65cf0f6fd68706387828f78e014cf"], ["updated_at", "2015-01-14 01:15:50.233726"], ["username", "7a481f949bb49fed3e8938516dce812b"]]
27062
+  (0.7ms) commit transaction
27063
+  (0.0ms) begin transaction
27064
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.235659"], ["email", "norene.bogisich@balistreri.biz"], ["name", "Modesto Feeney II"], ["password_hash", "a0ecc047ce3e7aeb87f4004703a38d05"], ["updated_at", "2015-01-14 01:15:50.235659"], ["username", "73866a1c76511d4395f10a6cc4aab662"]]
27065
+  (0.7ms) commit transaction
27066
+  (0.0ms) begin transaction
27067
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.237558"], ["email", "ward@kohler.name"], ["name", "Prince Schoen"], ["password_hash", "0b59c6208caee01747be9e9dd7225afe"], ["updated_at", "2015-01-14 01:15:50.237558"], ["username", "8580c07c33b9d8cb8d9568247fb6a08b"]]
27068
+  (0.7ms) commit transaction
27069
+  (0.0ms) begin transaction
27070
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.239553"], ["email", "wilhelmine_gulgowski@bauch.name"], ["name", "Flavie Rodriguez"], ["password_hash", "72bce906dc53828256fcbbdd1152f7f6"], ["updated_at", "2015-01-14 01:15:50.239553"], ["username", "bf9a1940e027a2798909d6c1955f8f65"]]
27071
+  (0.7ms) commit transaction
27072
+  (0.0ms) begin transaction
27073
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.241526"], ["email", "moshe.bauch@brekkepagac.name"], ["name", "Hardy Greenholt"], ["password_hash", "6f8385568a1009c09d0fa28ff6c29200"], ["updated_at", "2015-01-14 01:15:50.241526"], ["username", "f5b372ea6e7a716e3059742ba1b8ea8b"]]
27074
+  (0.7ms) commit transaction
27075
+  (0.1ms) begin transaction
27076
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.243511"], ["email", "tad.herzog@leschschumm.org"], ["name", "Alda Mayert"], ["password_hash", "e51c97b06e29558cfa5f32ef5d197e3b"], ["updated_at", "2015-01-14 01:15:50.243511"], ["username", "446545b582a3857e5f79318c073bdd46"]]
27077
+  (0.7ms) commit transaction
27078
+  (0.1ms) begin transaction
27079
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.245619"], ["email", "anne@blick.biz"], ["name", "Alisha Jerde"], ["password_hash", "de861181cb257295a828d114ae1b2bd3"], ["updated_at", "2015-01-14 01:15:50.245619"], ["username", "793906da83e129629a4664dfb99ef53a"]]
27080
+  (0.8ms) commit transaction
27081
+  (0.0ms) begin transaction
27082
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.247705"], ["email", "erin@grahamhodkiewicz.com"], ["name", "Rogers Kirlin"], ["password_hash", "4dd3ef447d1bb285dff9fb6306beae2e"], ["updated_at", "2015-01-14 01:15:50.247705"], ["username", "cc3121b0d6792248e3ac8c205c5b67a2"]]
27083
+  (0.6ms) commit transaction
27084
+  (0.0ms) begin transaction
27085
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.249444"], ["email", "katelyn@little.org"], ["name", "Alessandro Hoppe Jr."], ["password_hash", "ead60b3dd5f401dbfaf09f512b8bdd5c"], ["updated_at", "2015-01-14 01:15:50.249444"], ["username", "8ce6d034149ef204380414209d7549cc"]]
27086
+  (0.6ms) commit transaction
27087
+  (0.0ms) begin transaction
27088
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.251200"], ["email", "amir.bechtelar@senger.info"], ["name", "Greta Kuhlman"], ["password_hash", "74b5cbc1d3ce4af5b548028f0e72dedb"], ["updated_at", "2015-01-14 01:15:50.251200"], ["username", "285ed0c4a8698f8f662869440ac4781b"]]
27089
+  (0.7ms) commit transaction
27090
+  (0.0ms) begin transaction
27091
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.253113"], ["email", "eileen_huel@herman.biz"], ["name", "Elsa Waelchi"], ["password_hash", "9de766e3a8121336550a7af60fcf70cd"], ["updated_at", "2015-01-14 01:15:50.253113"], ["username", "bb900954d0c5e8a92bfdf72b8418831a"]]
27092
+  (0.7ms) commit transaction
27093
+  (0.0ms) begin transaction
27094
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.255093"], ["email", "elta@lindgren.org"], ["name", "Kaleigh Schuppe"], ["password_hash", "8362d9756a3357d8e94c2c1f59b43fda"], ["updated_at", "2015-01-14 01:15:50.255093"], ["username", "7fe8a7e8ad0a7cfaf2d1803755d86f72"]]
27095
+  (0.6ms) commit transaction
27096
+  (0.0ms) begin transaction
27097
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.256821"], ["email", "marco_yost@terry.com"], ["name", "Mr. Robbie Pacocha"], ["password_hash", "7c7ee5f824aa53b9eb8c25b62aea9717"], ["updated_at", "2015-01-14 01:15:50.256821"], ["username", "343f853ee891b3b13f8ca9048f0ba259"]]
27098
+  (0.7ms) commit transaction
27099
+  (0.0ms) begin transaction
27100
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.258727"], ["email", "herminia@mitchellconnelly.net"], ["name", "Miss Reuben Lueilwitz"], ["password_hash", "7d7b9cf9bee71bfc2f519ecee06353e3"], ["updated_at", "2015-01-14 01:15:50.258727"], ["username", "45a192ff1db06dc8512613b15fbab401"]]
27101
+  (0.7ms) commit transaction
27102
+  (0.0ms) begin transaction
27103
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.260716"], ["email", "eliza@brown.name"], ["name", "Jaydon Collins Jr."], ["password_hash", "c3b96496d45d98ca1838b3c225240a13"], ["updated_at", "2015-01-14 01:15:50.260716"], ["username", "ede1754d31904f20dccab0fd489ab6ff"]]
27104
+  (0.6ms) commit transaction
27105
+  (0.0ms) begin transaction
27106
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.262628"], ["email", "hollis.predovic@klocko.net"], ["name", "Adele Wilkinson"], ["password_hash", "14f9b4b226325f49bdccde1b10ebf6b7"], ["updated_at", "2015-01-14 01:15:50.262628"], ["username", "4d6b2eff28654fc3910a96cee4ae5b91"]]
27107
+  (0.6ms) commit transaction
27108
+  (0.0ms) begin transaction
27109
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.264393"], ["email", "camron@kshlerin.info"], ["name", "Isabella Marquardt"], ["password_hash", "e3ceabb1f7b61144e6a5a1a6cfd0d41b"], ["updated_at", "2015-01-14 01:15:50.264393"], ["username", "bb7ab466ad53281076020bfcb038a3c5"]]
27110
+  (0.6ms) commit transaction
27111
+  (0.0ms) begin transaction
27112
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.266213"], ["email", "kelsi.ritchie@wunsch.com"], ["name", "Reina Rippin"], ["password_hash", "da1b0cf93ff8f268ad6babeb9728594d"], ["updated_at", "2015-01-14 01:15:50.266213"], ["username", "df149fbce1d26bb96f6aeb500a6b57ce"]]
27113
+  (1.0ms) commit transaction
27114
+  (0.0ms) begin transaction
27115
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.268430"], ["email", "bernie_hoeger@reynolds.info"], ["name", "Ms. Gino Carter"], ["password_hash", "3568cde385cb46879f22ae89908c4fc5"], ["updated_at", "2015-01-14 01:15:50.268430"], ["username", "cddc0b3d7c7e43f552660a8b450d718f"]]
27116
+  (0.7ms) commit transaction
27117
+  (0.0ms) begin transaction
27118
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.270296"], ["email", "parker.mante@koelpin.info"], ["name", "Ashly Lehner"], ["password_hash", "39b6991b5059f540ab28119ec78dafd4"], ["updated_at", "2015-01-14 01:15:50.270296"], ["username", "a8df5ad99456c001172c7f3135f58220"]]
27119
+  (0.6ms) commit transaction
27120
+  (0.0ms) begin transaction
27121
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.272054"], ["email", "melany@bednar.net"], ["name", "Kellen Rempel"], ["password_hash", "afc35cc3b5384e45bc2ee23e84da0dba"], ["updated_at", "2015-01-14 01:15:50.272054"], ["username", "3e42adfa24f849dfde9c357481d66c3f"]]
27122
+  (0.7ms) commit transaction
27123
+  (0.0ms) begin transaction
27124
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.273941"], ["email", "justina@dickens.org"], ["name", "Ollie Turcotte DDS"], ["password_hash", "c9a6f36ffd78fc95b7385b43afb0ce81"], ["updated_at", "2015-01-14 01:15:50.273941"], ["username", "9324d37313e0bd539437fd35bce1ccc3"]]
27125
+  (0.7ms) commit transaction
27126
+  (0.0ms) begin transaction
27127
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.275827"], ["email", "jena.pfannerstill@hermanframi.com"], ["name", "Mrs. Julie Rogahn"], ["password_hash", "fdd8775659810be04566f564306ae251"], ["updated_at", "2015-01-14 01:15:50.275827"], ["username", "ef537d62bb9352c0ba3b74e4cf005440"]]
27128
+  (0.7ms) commit transaction
27129
+  (0.0ms) begin transaction
27130
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.277785"], ["email", "michel_walsh@kaulkelynch.biz"], ["name", "Rosario Reichel"], ["password_hash", "84371d0957a7c77c97e1af7f6f0aee88"], ["updated_at", "2015-01-14 01:15:50.277785"], ["username", "efb42fd10cff3e3b20457af341a765ae"]]
27131
+  (0.7ms) commit transaction
27132
+  (0.0ms) begin transaction
27133
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.279687"], ["email", "lulu@powlowskipredovic.net"], ["name", "Hoyt Schowalter"], ["password_hash", "3ca85d367565b8f20433659fd8b7af85"], ["updated_at", "2015-01-14 01:15:50.279687"], ["username", "fabe896243d2bc28387097372cebf84e"]]
27134
+  (0.7ms) commit transaction
27135
+  (0.0ms) begin transaction
27136
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.281513"], ["email", "houston_ledner@wiegandhaley.info"], ["name", "Freddy Kuhlman"], ["password_hash", "b93413c55b14c8c3e2fbe1ffdfd6ee64"], ["updated_at", "2015-01-14 01:15:50.281513"], ["username", "4ad4f816a5cbd0e207d386e9d5c56231"]]
27137
+  (0.7ms) commit transaction
27138
+  (0.0ms) begin transaction
27139
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.283356"], ["email", "genesis_conroy@streichrolfson.info"], ["name", "Rubie Legros"], ["password_hash", "7b321c01f3bcd55d8f8740531a0827b6"], ["updated_at", "2015-01-14 01:15:50.283356"], ["username", "ddb225e1c43512ed6efc14dd50402488"]]
27140
+  (0.7ms) commit transaction
27141
+  (0.0ms) begin transaction
27142
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.285219"], ["email", "mina.kling@bogisich.info"], ["name", "Russell Paucek"], ["password_hash", "5c8c314650f2908e814ba121f0a03fea"], ["updated_at", "2015-01-14 01:15:50.285219"], ["username", "af29edc21e3662c1a21390350d41e08e"]]
27143
+  (0.7ms) commit transaction
27144
+  (0.0ms) begin transaction
27145
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.287092"], ["email", "carey@wilderman.biz"], ["name", "Garnet King PhD"], ["password_hash", "a206b9ff764159e7da538cea8ce9f9a4"], ["updated_at", "2015-01-14 01:15:50.287092"], ["username", "92a2798ac522afe20e5a941d238110f0"]]
27146
+  (0.7ms) commit transaction
27147
+  (0.0ms) begin transaction
27148
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.289043"], ["email", "petra@lockman.net"], ["name", "Alanna Aufderhar"], ["password_hash", "5f256eaafad12a9ea17b1a22ef1fe94c"], ["updated_at", "2015-01-14 01:15:50.289043"], ["username", "30766a993a5fefe46ef443458fd1d6e1"]]
27149
+  (0.7ms) commit transaction
27150
+  (0.0ms) begin transaction
27151
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.290896"], ["email", "viviane_volkman@leannon.biz"], ["name", "Mattie Walter"], ["password_hash", "cad47762377fc82e3adbd475134550a3"], ["updated_at", "2015-01-14 01:15:50.290896"], ["username", "12cf90b591df190f1a8b45a776398c7e"]]
27152
+  (0.7ms) commit transaction
27153
+  (0.0ms) begin transaction
27154
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.292735"], ["email", "waldo@hansen.info"], ["name", "Albin Durgan"], ["password_hash", "b0d3771538e53d0f10d0f9a70b11c138"], ["updated_at", "2015-01-14 01:15:50.292735"], ["username", "16b63d5e57b5c4b5d7ed3b2fdf0ce155"]]
27155
+  (0.7ms) commit transaction
27156
+  (0.0ms) begin transaction
27157
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.294538"], ["email", "lizeth@linddickinson.info"], ["name", "Kallie Jacobs"], ["password_hash", "c1a41b07c78f1e7301b2c27f7caf4460"], ["updated_at", "2015-01-14 01:15:50.294538"], ["username", "79ef371ff33b25ce07b351639b10d2ed"]]
27158
+  (0.7ms) commit transaction
27159
+  (0.0ms) begin transaction
27160
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.296376"], ["email", "fritz@reillymclaughlin.info"], ["name", "Aryanna Lesch"], ["password_hash", "9f49ebedc3989160da8cc91ca5ffa5f4"], ["updated_at", "2015-01-14 01:15:50.296376"], ["username", "f419d935f901050f04427649264c08a4"]]
27161
+  (0.7ms) commit transaction
27162
+  (0.0ms) begin transaction
27163
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.298243"], ["email", "pauline_parisian@pfeffer.org"], ["name", "Baylee Wilderman"], ["password_hash", "fde716e370e4b9e8460c2c31a69b9043"], ["updated_at", "2015-01-14 01:15:50.298243"], ["username", "0f084eac368e6a6593d3a32e7705484b"]]
27164
+  (0.6ms) commit transaction
27165
+  (0.0ms) begin transaction
27166
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.300213"], ["email", "chaya_carroll@pauceklarson.info"], ["name", "Verda Labadie"], ["password_hash", "f694d136ef68399a1a8b2d2ff9fc7fd4"], ["updated_at", "2015-01-14 01:15:50.300213"], ["username", "17c9aa6314127e79d37fd0e48d67d8d5"]]
27167
+  (0.8ms) commit transaction
27168
+  (0.1ms) begin transaction
27169
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.302156"], ["email", "lucio_mccullough@orneichmann.info"], ["name", "Jenifer Feil DDS"], ["password_hash", "2dfaeef1a59a8c5d809c86f78155acf8"], ["updated_at", "2015-01-14 01:15:50.302156"], ["username", "a09e590812aadb5750f03ed2eb8b12ed"]]
27170
+  (0.7ms) commit transaction
27171
+  (0.0ms) begin transaction
27172
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.303967"], ["email", "judah@ortiz.name"], ["name", "Axel Bogan Jr."], ["password_hash", "8cba4497d03dfe570ba024cdfda12b33"], ["updated_at", "2015-01-14 01:15:50.303967"], ["username", "f1e0eee273c85e47febd2d6f680f6793"]]
27173
+  (0.7ms) commit transaction
27174
+  (0.0ms) begin transaction
27175
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.305825"], ["email", "gregoria.lakin@mertz.net"], ["name", "Salma Murazik II"], ["password_hash", "fdc86f78266eaf35af43ccd076c5bd6a"], ["updated_at", "2015-01-14 01:15:50.305825"], ["username", "dc9e0f6d57adb9c413b4cba54241bc41"]]
27176
+  (0.7ms) commit transaction
27177
+  (0.0ms) begin transaction
27178
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.307712"], ["email", "nona_abbott@hills.com"], ["name", "Julio Legros IV"], ["password_hash", "6d335a3b5618a8ef9748a638716285fc"], ["updated_at", "2015-01-14 01:15:50.307712"], ["username", "32c3de2fd3cf3defba92ded76030f951"]]
27179
+  (0.7ms) commit transaction
27180
+  (0.0ms) begin transaction
27181
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.309566"], ["email", "trey.yost@heller.name"], ["name", "Ryan Will"], ["password_hash", "2b2921713e3910a2c734ab4da2fc49bf"], ["updated_at", "2015-01-14 01:15:50.309566"], ["username", "b54b1f75f04908f262c7ee6d7cf2d293"]]
27182
+  (0.6ms) commit transaction
27183
+  (0.0ms) begin transaction
27184
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.311575"], ["email", "magnus_mosciski@smithamlebsack.name"], ["name", "Wallace Rice"], ["password_hash", "b84fb0142bfe4cf760c20c2588910741"], ["updated_at", "2015-01-14 01:15:50.311575"], ["username", "4f9a1c240ad0af13d4ca89deed50ef4f"]]
27185
+  (0.5ms) commit transaction
27186
+  (0.0ms) begin transaction
27187
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.313282"], ["email", "tina@pollichgerhold.net"], ["name", "Joanie Ebert"], ["password_hash", "f2cae41a6fdc281926933822ab0d4556"], ["updated_at", "2015-01-14 01:15:50.313282"], ["username", "299be9d8190915a959ea9641e0410598"]]
27188
+  (0.7ms) commit transaction
27189
+  (0.0ms) begin transaction
27190
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.315116"], ["email", "eddie@cronakuvalis.com"], ["name", "Santos Swaniawski"], ["password_hash", "e77e26eb4100fca33878a8aeaa0f36cd"], ["updated_at", "2015-01-14 01:15:50.315116"], ["username", "97bcf80b33103f34e04d0a54cbdfc528"]]
27191
+  (0.7ms) commit transaction
27192
+  (0.0ms) begin transaction
27193
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.316959"], ["email", "francesca@kub.com"], ["name", "Cicero Corwin"], ["password_hash", "550c045c039d9acb73a9ae49889d1226"], ["updated_at", "2015-01-14 01:15:50.316959"], ["username", "92b7f4a74f67a92b42b72cb9c1c4b536"]]
27194
+  (0.7ms) commit transaction
27195
+  (0.0ms) begin transaction
27196
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.318825"], ["email", "bryce.mclaughlin@lehner.com"], ["name", "Leora Heller"], ["password_hash", "f085315ebba31bbed02881639c7703cc"], ["updated_at", "2015-01-14 01:15:50.318825"], ["username", "5c0666e4e1fa9f61b6e4f43bf8b945c4"]]
27197
+  (0.7ms) commit transaction
27198
+  (0.0ms) begin transaction
27199
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.320647"], ["email", "sheila@kuphalhermiston.info"], ["name", "Reuben Mayert"], ["password_hash", "f1f39f8bec24b5ff17a9356880f7b265"], ["updated_at", "2015-01-14 01:15:50.320647"], ["username", "1475555f5079e4d7c3f2c7fe7119e3e6"]]
27200
+  (0.7ms) commit transaction
27201
+  (0.1ms) begin transaction
27202
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.322534"], ["email", "lily.leannon@mitchellklocko.biz"], ["name", "Rosario Barton"], ["password_hash", "1e24fc04cf0eef4cb0f8093ba84dddf7"], ["updated_at", "2015-01-14 01:15:50.322534"], ["username", "deaa63d78cdaaf04289a6ba9761e04e9"]]
27203
+  (0.6ms) commit transaction
27204
+  (0.0ms) begin transaction
27205
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.324409"], ["email", "calista@lueilwitz.biz"], ["name", "Hosea O'Conner"], ["password_hash", "191aa7c3a248873c01f5796ddf4ba70c"], ["updated_at", "2015-01-14 01:15:50.324409"], ["username", "55cc4d30e6271d1eb1b9dbdd99a4139a"]]
27206
+  (0.7ms) commit transaction
27207
+  (0.0ms) begin transaction
27208
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.326287"], ["email", "kaylee_haley@okeefe.org"], ["name", "Rita Kirlin"], ["password_hash", "1b9a877240408a697e0d5214a2735214"], ["updated_at", "2015-01-14 01:15:50.326287"], ["username", "00ba5d3ec6b07b28f45eb8b1eddbe4fa"]]
27209
+  (0.5ms) commit transaction
27210
+  (0.0ms) begin transaction
27211
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.327948"], ["email", "raina.veum@pfannerstill.name"], ["name", "Danielle Gleichner"], ["password_hash", "03c47ce13ec52235f91547749a58406a"], ["updated_at", "2015-01-14 01:15:50.327948"], ["username", "f4a91a415e12f90a65ac13b6aaa9ab48"]]
27212
+  (0.7ms) commit transaction
27213
+  (0.0ms) begin transaction
27214
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.329750"], ["email", "angus@herzogmarvin.info"], ["name", "Brandy Cole"], ["password_hash", "5fd2dad6bf0f3abf8f6f9f9069d44fd8"], ["updated_at", "2015-01-14 01:15:50.329750"], ["username", "f919fb0187290a7b756074e39530fdb2"]]
27215
+  (0.7ms) commit transaction
27216
+  (0.0ms) begin transaction
27217
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.331559"], ["email", "magnus@legrosgutmann.org"], ["name", "Edwardo Johns"], ["password_hash", "4f401d163c5cbe0bd412c566685040cd"], ["updated_at", "2015-01-14 01:15:50.331559"], ["username", "daa7ece2144a3ca0ee2f44bb9ac32009"]]
27218
+  (0.7ms) commit transaction
27219
+  (0.0ms) begin transaction
27220
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.333500"], ["email", "vada.pagac@gottliebluettgen.net"], ["name", "Claudie Fritsch II"], ["password_hash", "00ff1505f1f62229594968a46e5bab6b"], ["updated_at", "2015-01-14 01:15:50.333500"], ["username", "a09a42e287bfd7f38bbbd5bda2eddcb0"]]
27221
+  (0.7ms) commit transaction
27222
+  (0.1ms) begin transaction
27223
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.335428"], ["email", "edmond@wilderman.info"], ["name", "Ryder Robel"], ["password_hash", "c0c4eaec106f0965587d4ccaf7b9d2f6"], ["updated_at", "2015-01-14 01:15:50.335428"], ["username", "87f0aace97e7ca58ebc9ce3299eab116"]]
27224
+  (0.7ms) commit transaction
27225
+  (0.1ms) begin transaction
27226
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.337290"], ["email", "vada@harvey.org"], ["name", "Lonny Becker"], ["password_hash", "57fc7fbf1407e2c328f1532b27b57a9f"], ["updated_at", "2015-01-14 01:15:50.337290"], ["username", "c175f62b1641509514409b79ab9bc40c"]]
27227
+  (0.7ms) commit transaction
27228
+  (0.0ms) begin transaction
27229
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.339159"], ["email", "delphine.aufderhar@kokohler.org"], ["name", "Mr. Christa Mosciski"], ["password_hash", "73a5e54a38f7cb83c4feb87908453584"], ["updated_at", "2015-01-14 01:15:50.339159"], ["username", "1c5ce6695de3d67a0d1509d47bc74db9"]]
27230
+  (0.7ms) commit transaction
27231
+  (0.0ms) begin transaction
27232
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.341020"], ["email", "everett@zemlakbednar.info"], ["name", "Chasity Hagenes Jr."], ["password_hash", "6de5d2253455139bcfabfa70134df717"], ["updated_at", "2015-01-14 01:15:50.341020"], ["username", "0e1211fff861439128d98ec71fe776b9"]]
27233
+  (0.7ms) commit transaction
27234
+  (0.0ms) begin transaction
27235
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.342927"], ["email", "zakary@rodriguez.info"], ["name", "Albin Sipes"], ["password_hash", "6852bb8928f05503b25b1790fa9f5fa1"], ["updated_at", "2015-01-14 01:15:50.342927"], ["username", "cd4834e4964648ab150873aa3befd622"]]
27236
+  (0.7ms) commit transaction
27237
+  (0.0ms) begin transaction
27238
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.344836"], ["email", "dock@lebsacklebsack.info"], ["name", "Mrs. Elvera Hessel"], ["password_hash", "fca032129ac2a5c4bc0410b1171a4dd5"], ["updated_at", "2015-01-14 01:15:50.344836"], ["username", "9e991b75977c3225d7f9be9cfba9cb2c"]]
27239
+  (0.7ms) commit transaction
27240
+  (0.0ms) begin transaction
27241
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.346618"], ["email", "kevon@moen.com"], ["name", "Benton Rippin"], ["password_hash", "31fe1028cee7d758903597b59992a1b5"], ["updated_at", "2015-01-14 01:15:50.346618"], ["username", "fc9748833517b6cd1fc0e786d29bd412"]]
27242
+  (0.7ms) commit transaction
27243
+  (0.0ms) begin transaction
27244
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.348405"], ["email", "nella@swiftbruen.org"], ["name", "Brice Hackett"], ["password_hash", "6f73993e1f024d91b6971d0784d52f4f"], ["updated_at", "2015-01-14 01:15:50.348405"], ["username", "f1b7c3612b9ce7d2d55f269f27401314"]]
27245
+  (0.7ms) commit transaction
27246
+  (0.0ms) begin transaction
27247
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.350223"], ["email", "eudora@powlowskiberge.info"], ["name", "Annalise Davis I"], ["password_hash", "657acc74a4750ef0f1f1fdfc24e3f537"], ["updated_at", "2015-01-14 01:15:50.350223"], ["username", "8fdacc88fdcf0cf5168d731fc2571d95"]]
27248
+  (0.7ms) commit transaction
27249
+  (0.0ms) begin transaction
27250
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.352322"], ["email", "bridget@sauer.info"], ["name", "Augusta Reilly"], ["password_hash", "3a8ddff792e593ab90d6d77594c10644"], ["updated_at", "2015-01-14 01:15:50.352322"], ["username", "e2fb566455c9663eb21fe76b3a4a627b"]]
27251
+  (0.7ms) commit transaction
27252
+  (0.0ms) begin transaction
27253
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.354224"], ["email", "kianna.muller@bradtke.com"], ["name", "Terrell Barrows Jr."], ["password_hash", "86be794986dda390da659ac115cfed7b"], ["updated_at", "2015-01-14 01:15:50.354224"], ["username", "40ef41054546f52445df62da078de13d"]]
27254
+  (0.7ms) commit transaction
27255
+  (0.0ms) begin transaction
27256
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.356089"], ["email", "jamil@dibbert.biz"], ["name", "Niko Stark"], ["password_hash", "fec080b577fab4ecea9d0e9ac38856b5"], ["updated_at", "2015-01-14 01:15:50.356089"], ["username", "6025d954c7822ec384024fa83c70ecaa"]]
27257
+  (0.6ms) commit transaction
27258
+  (0.0ms) begin transaction
27259
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.357775"], ["email", "chyna@hilpert.org"], ["name", "Sophie Towne"], ["password_hash", "9db4933653632a6a06bc015ded88619e"], ["updated_at", "2015-01-14 01:15:50.357775"], ["username", "39d381adea7713f21aac0ecc3d0b1ff9"]]
27260
+  (0.7ms) commit transaction
27261
+  (0.0ms) begin transaction
27262
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.359623"], ["email", "kaycee@bauch.com"], ["name", "Cortney Marks II"], ["password_hash", "1f331e1e60c1dce275d81f62f23924fc"], ["updated_at", "2015-01-14 01:15:50.359623"], ["username", "b595b813ea35e6b9d783494feff7647e"]]
27263
+  (0.7ms) commit transaction
27264
+  (0.0ms) begin transaction
27265
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.361562"], ["email", "garrison_flatley@webermetz.biz"], ["name", "Mr. Ariane Weber"], ["password_hash", "d6a59d6d83256225bc5af602f260aa2c"], ["updated_at", "2015-01-14 01:15:50.361562"], ["username", "1e04de99b8fab2c34dee5bca12227c86"]]
27266
+  (0.7ms) commit transaction
27267
+  (0.0ms) begin transaction
27268
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.363418"], ["email", "larry@stiedemann.org"], ["name", "Damian Watsica PhD"], ["password_hash", "f7f321bbdc73185529076d4943780867"], ["updated_at", "2015-01-14 01:15:50.363418"], ["username", "a51ed80dd1752da621b5d66387824b0d"]]
27269
+  (0.7ms) commit transaction
27270
+  (0.0ms) begin transaction
27271
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.365282"], ["email", "clemmie@walkermurphy.name"], ["name", "Mr. Jakob Strosin"], ["password_hash", "daa260cc5ca8516564980369d9c97c02"], ["updated_at", "2015-01-14 01:15:50.365282"], ["username", "e57e6f385c28a3a4e4e4c749a6f5963c"]]
27272
+  (0.7ms) commit transaction
27273
+  (0.0ms) begin transaction
27274
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.367321"], ["email", "orin_rogahn@rosenbaum.name"], ["name", "Lane Johnston"], ["password_hash", "af0b544c6dbc50c7754079c32fceb43b"], ["updated_at", "2015-01-14 01:15:50.367321"], ["username", "fa9dcf3e8ac502d0b7b264aad881790c"]]
27275
+  (0.6ms) commit transaction
27276
+  (0.0ms) begin transaction
27277
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.369030"], ["email", "katheryn.jerde@friesenkerluke.com"], ["name", "Abdullah Lakin"], ["password_hash", "43c04a2791f045947ed908a41f6720c5"], ["updated_at", "2015-01-14 01:15:50.369030"], ["username", "b6aa15b0ecbadfad312b74f2e4ca4163"]]
27278
+  (0.6ms) commit transaction
27279
+  (0.0ms) begin transaction
27280
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.370742"], ["email", "elise@reynolds.info"], ["name", "Serena Torphy"], ["password_hash", "b77da861a38aec2cf9d06142af06bf02"], ["updated_at", "2015-01-14 01:15:50.370742"], ["username", "ef06aa0c799844c7e2053cc939ffcba0"]]
27281
+  (0.7ms) commit transaction
27282
+  (0.0ms) begin transaction
27283
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.372619"], ["email", "nona.bailey@hermannspinka.org"], ["name", "Elsa Zieme"], ["password_hash", "255d24ed2762b460f5b35d74a23b520b"], ["updated_at", "2015-01-14 01:15:50.372619"], ["username", "fb97d021c2dff5b6023b1b560fe440ae"]]
27284
+  (0.7ms) commit transaction
27285
+  (0.0ms) begin transaction
27286
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.374501"], ["email", "kaden@schinnerfranecki.biz"], ["name", "Trever Kunze"], ["password_hash", "2b0e0f6006b8dc7ad34ab8761c746ac9"], ["updated_at", "2015-01-14 01:15:50.374501"], ["username", "e80baa264ec2cc725b6c6f5cd988c543"]]
27287
+  (0.7ms) commit transaction
27288
+  (0.0ms) begin transaction
27289
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.376394"], ["email", "doug.pacocha@durgan.name"], ["name", "Chyna Bauch"], ["password_hash", "ab3207c1b2d46c8b2c788227a9d9e1d3"], ["updated_at", "2015-01-14 01:15:50.376394"], ["username", "dbf16931bcd27296b5ff625bb51ea96a"]]
27290
+  (0.7ms) commit transaction
27291
+  (0.0ms) begin transaction
27292
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.378340"], ["email", "amie.boyer@douglas.net"], ["name", "Miss Lila Kulas"], ["password_hash", "2d873f2216e7221e53b4e867db81d3b0"], ["updated_at", "2015-01-14 01:15:50.378340"], ["username", "4819a77c9e6ca72ecadbf2f461a64629"]]
27293
+  (0.6ms) commit transaction
27294
+  (0.0ms) begin transaction
27295
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.380103"], ["email", "marion_rolfson@kutch.name"], ["name", "Rosemarie Toy I"], ["password_hash", "e9fe29a82559f96bf73b11414fb54e32"], ["updated_at", "2015-01-14 01:15:50.380103"], ["username", "ebf5570e7ee1c209f41062f298dcb53a"]]
27296
+  (0.7ms) commit transaction
27297
+  (0.0ms) begin transaction
27298
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.381947"], ["email", "matteo@sanford.com"], ["name", "Vallie O'Hara"], ["password_hash", "0f2f367040b5f72d73478fb8edd4559d"], ["updated_at", "2015-01-14 01:15:50.381947"], ["username", "5b0361fbb08b6952385a78b7d84e7d83"]]
27299
+  (0.6ms) commit transaction
27300
+  (0.0ms) begin transaction
27301
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.383755"], ["email", "christophe@weberstracke.info"], ["name", "Amira Schuster"], ["password_hash", "c6f3509a9ba8f7d456c775cf5a88c406"], ["updated_at", "2015-01-14 01:15:50.383755"], ["username", "647294ded20df1da55c0153ed5231957"]]
27302
+  (0.7ms) commit transaction
27303
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."name" LIKE '% doe%'
27304
+  (0.0ms) begin transaction
27305
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.386913"], ["email", "john@doe.com"], ["name", "John Doe"], ["password_hash", "47b6752474672df137627da3288786db"], ["updated_at", "2015-01-14 01:15:50.386913"], ["username", "doejohn"]]
27306
+  (0.6ms) commit transaction
27307
+  (0.0ms) begin transaction
27308
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.388619"], ["email", "jane@doe.com"], ["name", "Jane Doe"], ["password_hash", "9a64c10b7803fc09628ed9908a41d953"], ["updated_at", "2015-01-14 01:15:50.388619"], ["username", "doejane"]]
27309
+  (0.7ms) commit transaction
27310
+  (0.0ms) begin transaction
27311
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-14 01:15:50.390296"], ["email", "jack@doe.com"], ["name", "Jack Doe"], ["password_hash", "9d391a68734715b8151e4e91594696ac"], ["updated_at", "2015-01-14 01:15:50.390296"], ["username", "doejack"]]
27312
+  (0.7ms) commit transaction
27313
+  (0.1ms) begin transaction
27314
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
27315
+  (0.0ms) commit transaction
27316
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE '% dOe%')) ORDER BY "users"."name" ASC
27317
+  (0.0ms) begin transaction
27318
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
27319
+  (0.0ms) commit transaction
27320
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%')) ORDER BY "users"."name" ASC
27321
+  (0.0ms) begin transaction
27322
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
27323
+  (0.0ms) commit transaction
27324
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%')) ORDER BY "users"."name" ASC
27325
+  (0.0ms) begin transaction
27326
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'DoE%'))
27327
+  (0.0ms) commit transaction
27328
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'DoE%')) ORDER BY "users"."created_at" ASC, "users"."name" ASC
27329
+  (0.0ms) begin transaction
27330
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'dOe%'))
27331
+  (0.0ms) commit transaction
27332
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'dOe%')) ORDER BY "users"."created_at" DESC, "users"."name" DESC
27333
+  (0.1ms) SELECT COUNT(*) FROM "users"
27334
+  (0.0ms) begin transaction
27335
+  (0.1ms) SELECT COUNT(*) FROM "users"
27336
+  (0.0ms) commit transaction
27337
+ User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC
27338
+  (0.0ms) begin transaction
27339
+  (0.1ms) SELECT COUNT(*) FROM "users"
27340
+  (0.0ms) commit transaction
27341
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 0
27342
+  (0.0ms) begin transaction
27343
+  (0.1ms) SELECT COUNT(*) FROM "users"
27344
+  (0.0ms) commit transaction
27345
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 0
27346
+  (0.0ms) begin transaction
27347
+  (0.1ms) SELECT COUNT(*) FROM "users"
27348
+  (0.0ms) commit transaction
27349
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 20
27350
+  (0.0ms) begin transaction
27351
+  (0.1ms) SELECT COUNT(*) FROM "users"
27352
+  (0.0ms) commit transaction
27353
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 40
27354
+  (0.0ms) begin transaction
27355
+  (0.1ms) SELECT COUNT(*) FROM "users"
27356
+  (0.0ms) commit transaction
27357
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 60
27358
+  (0.0ms) begin transaction
27359
+  (0.1ms) SELECT COUNT(*) FROM "users"
27360
+  (0.0ms) commit transaction
27361
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 80
27362
+  (0.0ms) begin transaction
27363
+  (0.1ms) SELECT COUNT(*) FROM "users"
27364
+  (0.0ms) commit transaction
27365
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."name" ASC LIMIT 20 OFFSET 19980