openstax_api 3.0.0 → 3.0.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: e4a4d7a6e7dd7a7ccda5ca535edb33ce7dc6694c
4
- data.tar.gz: 1337c07dcb6b7097a7411850b09781ab0729110e
3
+ metadata.gz: 0a201392708c1dc1aea7657701f4b652d572b527
4
+ data.tar.gz: 490312d997713a3fde94c3490a0363d99db95cfc
5
5
  SHA512:
6
- metadata.gz: d7b974c2cb4bc39dea96d829e94b5296db85fa15d03e8d9cb30f075e27a3e606296ad3188a68cb6108d451a9ba322ba386087469e40d85718125af75ae57a609
7
- data.tar.gz: dc0ee731484d0a14411327ee1cde7d0e622421d0973d47108255a11ab22a5104df0a3ee1975ffd14fa5e0d26a0ab158fd3d0c413023a435da40bb2644040a1e6
6
+ metadata.gz: a62157873835a92e372a2af20ec6ab5a6a957d346c411f08ca4ad1e871d06acaeb7b21837c3b3bff4cbc5c32deacff88eb993d6260ff072ed97df0ffcfdd4478
7
+ data.tar.gz: 6c1fe337a3919a2f2d16a2430ad7bac65183a926f10169a16547bb83f5669721416beb3498cddf413e5dbc8b702c55871a92700e0ec598ce69ec24bc3ad17c6b
@@ -8,19 +8,26 @@ module OpenStax
8
8
 
9
9
  module Roar
10
10
 
11
+ def standard_search(routine, query, options, represent_with)
12
+ model_klass = routine.send(:initial_relation).base_class
13
+ OSU::AccessPolicy.require_action_allowed!(:search, current_api_user, model_klass)
14
+ outputs = routine.call(query, options).outputs
15
+ respond_with outputs, represent_with: represent_with
16
+ end
17
+
11
18
  def standard_create(model, represent_with=nil, &block)
12
19
  standard_nested_create(model, nil, nil, represent_with, &block)
13
20
  end
14
21
 
15
22
  def standard_read(model, represent_with=nil)
16
- OSU::AccessPolicy.require_action_allowed!(:read, current_api_user, @model)
23
+ OSU::AccessPolicy.require_action_allowed!(:read, current_api_user, model)
17
24
  respond_with model, represent_with: represent_with
18
25
  end
19
26
 
20
27
  def standard_update(model, represent_with=nil)
21
28
  OSU::AccessPolicy.require_action_allowed!(:update, current_api_user, model)
22
29
 
23
- model_klass.transaction do
30
+ model.class.transaction do
24
31
  consume!(model, represent_with: represent_with)
25
32
  yield model if block_given?
26
33
  OSU::AccessPolicy.require_action_allowed!(:update, current_api_user, model)
@@ -43,6 +50,16 @@ module OpenStax
43
50
  end
44
51
  end
45
52
 
53
+ def standard_index(relation, represent_with)
54
+ model_klass = relation.base_class
55
+ OSU::AccessPolicy.require_action_allowed!(:index, current_api_user, model_klass)
56
+ respond_with relation, represent_with: represent_with
57
+ end
58
+
59
+ def standard_sort(*args)
60
+ raise NotYetImplemented
61
+ end
62
+
46
63
  def standard_nested_create(model, container_association=nil,
47
64
  container=nil, represent_with=nil)
48
65
  if container_association && container
@@ -55,7 +72,7 @@ module OpenStax
55
72
  # We do want to consume before checking the permissions so we can know
56
73
  # what we're dealing with, but if user doesn't have permission we don't
57
74
  # want to have changed the DB. Wrap in a transaction to protect ourselves.
58
- model_klass.transaction do
75
+ model.class.transaction do
59
76
  consume!(model, represent_with: represent_with)
60
77
  yield model if block_given?
61
78
  OSU::AccessPolicy.require_action_allowed!(:create, current_api_user, model)
@@ -67,23 +84,6 @@ module OpenStax
67
84
  end
68
85
  end
69
86
  end
70
-
71
- def standard_index(relation, represent_with)
72
- model_klass = relation.base_class
73
- OSU::AccessPolicy.require_action_allowed!(:index, current_api_user, model_klass)
74
- respond_with relation, represent_with: represent_with
75
- end
76
-
77
- def standard_search(routine, query, options, represent_with)
78
- model_klass = routine.send(:initial_relation).base_class
79
- OSU::AccessPolicy.require_action_allowed!(:search, current_api_user, model_klass)
80
- outputs = routine.call(query, options).outputs
81
- respond_with outputs, represent_with: represent_with
82
- end
83
-
84
- def standard_sort(*args)
85
- raise NotYetImplemented
86
- end
87
87
 
88
88
  end
89
89
 
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Api
3
- VERSION = "3.0.0"
3
+ VERSION = "3.0.1"
4
4
  end
5
5
  end
Binary file
@@ -18313,3 +18313,474 @@ SQLite3::ConstraintException: NOT NULL constraint failed: dummy_users.username:
18313
18313
   (0.0ms) commit transaction
18314
18314
   (0.1ms) SELECT COUNT(*) FROM "users"
18315
18315
  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 19980
18316
+  (1.0ms) 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)) 
18317
+  (0.1ms) select sqlite_version(*)
18318
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
18319
+  (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))
18320
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
18321
+  (0.1ms) SELECT sql
18322
+ FROM sqlite_master
18323
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
18324
+ UNION ALL
18325
+ SELECT sql
18326
+ FROM sqlite_temp_master
18327
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
18328
+
18329
+  (0.8ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
18330
+  (0.1ms) SELECT sql
18331
+ FROM sqlite_master
18332
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
18333
+ UNION ALL
18334
+ SELECT sql
18335
+ FROM sqlite_temp_master
18336
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
18337
+
18338
+  (0.1ms)  SELECT sql
18339
+ FROM sqlite_master
18340
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
18341
+ UNION ALL
18342
+ SELECT sql
18343
+ FROM sqlite_temp_master
18344
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
18345
+ 
18346
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
18347
+  (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) 
18348
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
18349
+  (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) 
18350
+  (0.8ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
18351
+  (0.1ms)  SELECT sql
18352
+ FROM sqlite_master
18353
+ WHERE name='index_users_on_email' AND type='index'
18354
+ UNION ALL
18355
+ SELECT sql
18356
+ FROM sqlite_temp_master
18357
+ WHERE name='index_users_on_email' AND type='index'
18358
+ 
18359
+  (0.8ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
18360
+  (0.1ms)  SELECT sql
18361
+ FROM sqlite_master
18362
+ WHERE name='index_users_on_name' AND type='index'
18363
+ UNION ALL
18364
+ SELECT sql
18365
+ FROM sqlite_temp_master
18366
+ WHERE name='index_users_on_name' AND type='index'
18367
+ 
18368
+  (0.1ms) SELECT sql
18369
+ FROM sqlite_master
18370
+ WHERE name='index_users_on_email' AND type='index'
18371
+ UNION ALL
18372
+ SELECT sql
18373
+ FROM sqlite_temp_master
18374
+ WHERE name='index_users_on_email' AND type='index'
18375
+
18376
+  (0.8ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
18377
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
18378
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18379
+  (0.1ms) SELECT version FROM "schema_migrations"
18380
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
18381
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
18382
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18383
+  (0.1ms) begin transaction
18384
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.124407"], ["email", "alexzander@hirthe.org"], ["name", "Adan Feeney"], ["password_hash", "b32cc1a9d03ad26e5b72566f8f7ac03c"], ["updated_at", "2014-10-08 22:34:20.124407"], ["username", "0fca90e45d99924ebf3c35e8c5f42a92"]]
18385
+  (0.6ms) commit transaction
18386
+  (0.0ms) begin transaction
18387
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.129129"], ["email", "yvette.marvin@ebert.com"], ["name", "Willy Kessler"], ["password_hash", "6de466df65f1f29bfffff9eea43a403c"], ["updated_at", "2014-10-08 22:34:20.129129"], ["username", "bc8c6105c3609fce7f2ef1728c7f6ce8"]]
18388
+  (0.7ms) commit transaction
18389
+  (0.1ms) begin transaction
18390
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.133363"], ["email", "velma_rippin@rau.org"], ["name", "Serena O'Kon"], ["password_hash", "50c9222fe1a1098a95784fe2662e74dd"], ["updated_at", "2014-10-08 22:34:20.133363"], ["username", "be4e9c7bb67d41946c39fc5e0cc3d57f"]]
18391
+  (0.7ms) commit transaction
18392
+  (0.0ms) begin transaction
18393
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.135547"], ["email", "korey@bashirianbashirian.biz"], ["name", "Waylon Franecki"], ["password_hash", "fecd087a23b1ea2299dbd68ee5b0fdf1"], ["updated_at", "2014-10-08 22:34:20.135547"], ["username", "52817e4b3064e8dfa1430422cd65ce50"]]
18394
+  (0.6ms) commit transaction
18395
+  (0.0ms) begin transaction
18396
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.138039"], ["email", "nellie@von.biz"], ["name", "Chet Considine IV"], ["password_hash", "edbcae2e98b546492ba53ff4a9297bd2"], ["updated_at", "2014-10-08 22:34:20.138039"], ["username", "1dca44f79b13d08929d6f32179d2164a"]]
18397
+  (0.7ms) commit transaction
18398
+  (0.0ms) begin transaction
18399
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.139914"], ["email", "german.cruickshank@stracke.org"], ["name", "Nora Ziemann"], ["password_hash", "33495d4683c9e3adc79c1d73794985a1"], ["updated_at", "2014-10-08 22:34:20.139914"], ["username", "3971eb4f8060cd37b28d26412b627576"]]
18400
+  (0.6ms) commit transaction
18401
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
18402
+  (0.0ms) begin transaction
18403
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.159644"], ["email", "donavon@cummeratahane.org"], ["name", "Ashlynn Hessel"], ["password_hash", "486f38fe374ea1a7c1fe294180c1b28e"], ["updated_at", "2014-10-08 22:34:20.159644"], ["username", "c7c0a5843d1c98b02cb9d0e1ed4891e5"]]
18404
+  (0.7ms) commit transaction
18405
+  (0.0ms) begin transaction
18406
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.161760"], ["email", "drake_konopelski@lockman.biz"], ["name", "Jaleel Kessler"], ["password_hash", "f29e332893872aea670764241212d60b"], ["updated_at", "2014-10-08 22:34:20.161760"], ["username", "8af13d16f7e15a75921bf710c809f889"]]
18407
+  (0.6ms) commit transaction
18408
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
18409
+  (0.0ms) begin transaction
18410
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.165072"], ["email", "madie.pfannerstill@oreillytoy.info"], ["name", "Dr. Camren Hodkiewicz"], ["password_hash", "ad1d2f19528021062b688bc2ec008bd7"], ["updated_at", "2014-10-08 22:34:20.165072"], ["username", "b42c23cb5b4efdfd2f990dc561e743aa"]]
18411
+  (0.6ms) commit transaction
18412
+  (0.0ms) begin transaction
18413
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.166972"], ["email", "mariam@schmitt.com"], ["name", "Andrew Kris"], ["password_hash", "b46dd697bf9b70bc542f928df7da88e1"], ["updated_at", "2014-10-08 22:34:20.166972"], ["username", "c4db7e920b133170534e1181846eb823"]]
18414
+  (0.8ms) commit transaction
18415
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 ORDER BY "users"."id" ASC LIMIT 1
18416
+  (0.0ms) begin transaction
18417
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.186453"], ["email", "elmore.weinat@fisher.info"], ["name", "Royce Daugherty III"], ["password_hash", "de4cc19f5f9b7b9232cbf3c043a5244e"], ["updated_at", "2014-10-08 22:34:20.186453"], ["username", "1281a5da8549868a348d1ff9c643bbb4"]]
18418
+  (0.6ms) commit transaction
18419
+  (0.0ms) begin transaction
18420
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.189088"], ["email", "harry@wardbins.net"], ["name", "Braeden Kutch"], ["password_hash", "a4a6835b64d502a98a0d18dad3886113"], ["updated_at", "2014-10-08 22:34:20.189088"], ["username", "c81a452e957a7c6af93b5c8c7b7d9947"]]
18421
+  (0.6ms) commit transaction
18422
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 12 ORDER BY "users"."id" ASC LIMIT 1
18423
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
18424
+  (0.0ms) begin transaction
18425
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.193016"], ["email", "gabriel.terry@windler.info"], ["name", "Kellen Beier IV"], ["password_hash", "b26b0e98666b9365985c6365d84657e6"], ["updated_at", "2014-10-08 22:34:20.193016"], ["username", "705af49be54f38eb3278fb698edc20ea"]]
18426
+  (0.7ms) commit transaction
18427
+  (0.0ms) begin transaction
18428
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.194908"], ["email", "johnpaul_will@gorczany.com"], ["name", "Emilio Willms"], ["password_hash", "539659a139d22847d9190cfb0842ed29"], ["updated_at", "2014-10-08 22:34:20.194908"], ["username", "e95ecc5816e6f140da0e2756c005c8e5"]]
18429
+  (0.6ms) commit transaction
18430
+  (0.0ms) begin transaction
18431
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.196725"], ["email", "theresa_christiansen@littel.net"], ["name", "Myron Padberg IV"], ["password_hash", "796e769604cd8bbfea7ff9b26fe5a5a1"], ["updated_at", "2014-10-08 22:34:20.196725"], ["username", "aa155c49ab7b35f2ba0f0ad624a07c67"]]
18432
+  (0.6ms) commit transaction
18433
+  (0.0ms) begin transaction
18434
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.198439"], ["email", "lynn@gleichner.com"], ["name", "Alek Cassin"], ["password_hash", "f254825f0a9ccd90111561a43d41b6b2"], ["updated_at", "2014-10-08 22:34:20.198439"], ["username", "7f9de42460027618b26f76bf3b090dbf"]]
18435
+  (0.7ms) commit transaction
18436
+  (0.0ms) begin transaction
18437
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.200185"], ["email", "armand@hudsonhodkiewicz.net"], ["name", "Hassan Hilll"], ["password_hash", "43c6f778114f6d12e2d54322fa7a4b42"], ["updated_at", "2014-10-08 22:34:20.200185"], ["username", "71063345daf1b3201ddc22d65515511b"]]
18438
+  (0.7ms) commit transaction
18439
+  (0.0ms) begin transaction
18440
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.201938"], ["email", "erica@gottlieb.name"], ["name", "Susana Cummerata"], ["password_hash", "0a39a607065dc7fcc7a3986608995522"], ["updated_at", "2014-10-08 22:34:20.201938"], ["username", "ae32501dbe06807961ef39dc38daa72f"]]
18441
+  (0.6ms) commit transaction
18442
+  (0.0ms) begin transaction
18443
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.203677"], ["email", "mariane@abernathybogan.biz"], ["name", "Jennie Hettinger II"], ["password_hash", "a5418977501eb84fc71e9cffa5f51325"], ["updated_at", "2014-10-08 22:34:20.203677"], ["username", "f3fadc96bd4966296ec5dac600b0cd0f"]]
18444
+  (0.6ms) commit transaction
18445
+  (0.1ms) begin transaction
18446
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.205731"], ["email", "ahmad@gerlach.net"], ["name", "Emmy Graham"], ["password_hash", "0fdde927dad2c1a1a73968325c040856"], ["updated_at", "2014-10-08 22:34:20.205731"], ["username", "e0e9a67af4f2864e9b77230193396785"]]
18447
+  (0.6ms) commit transaction
18448
+  (0.0ms) begin transaction
18449
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.207947"], ["email", "fae@hahn.org"], ["name", "Alec Yost"], ["password_hash", "51debd164d1ba52995418a1259e70c25"], ["updated_at", "2014-10-08 22:34:20.207947"], ["username", "75e8e1e515941579363248a906634416"]]
18450
+  (0.6ms) commit transaction
18451
+  (0.0ms) begin transaction
18452
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.209600"], ["email", "grayson@altenwerth.name"], ["name", "Sydney Waelchi"], ["password_hash", "8a4e59c2a4ba84f290116db2f70abdde"], ["updated_at", "2014-10-08 22:34:20.209600"], ["username", "21456515b5a28bd1444fe6adebd2263d"]]
18453
+  (0.6ms) commit transaction
18454
+  (0.0ms) begin transaction
18455
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.211321"], ["email", "johan.dickens@wolf.biz"], ["name", "Shanny Streich"], ["password_hash", "3f90d9a33fc4a2bba33ec4f9b0d9c014"], ["updated_at", "2014-10-08 22:34:20.211321"], ["username", "36167037e7117e57a945c6f0bc2adc41"]]
18456
+  (0.6ms) commit transaction
18457
+  (0.0ms) begin transaction
18458
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.213028"], ["email", "cyril_kihn@koelpinlakin.biz"], ["name", "Anya Lockman"], ["password_hash", "e44b04c0ff191c6f77b27bdc3ab747a5"], ["updated_at", "2014-10-08 22:34:20.213028"], ["username", "d13e9d52742983ad1e50bca66f6fcbe6"]]
18459
+  (0.6ms) commit transaction
18460
+  (0.0ms) begin transaction
18461
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.214742"], ["email", "grant_davis@collier.org"], ["name", "Molly Gislason"], ["password_hash", "7abf771403a6f36ff188f1f216e4f987"], ["updated_at", "2014-10-08 22:34:20.214742"], ["username", "0387398d50ccbb739b07d6e266ad859b"]]
18462
+  (0.6ms) commit transaction
18463
+  (0.0ms) begin transaction
18464
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.216453"], ["email", "brielle.sawayn@wiegand.info"], ["name", "Henri Hilpert DDS"], ["password_hash", "9a5db52909ef5e142c2396c5cdd42136"], ["updated_at", "2014-10-08 22:34:20.216453"], ["username", "5eccb4bd9f397d9f2b3172d0b0a76934"]]
18465
+  (0.6ms) commit transaction
18466
+  (0.1ms) begin transaction
18467
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.218887"], ["email", "clovis@buckridgekrajcik.name"], ["name", "Miss Damien Swift"], ["password_hash", "14ab3a572886678c8be7a8940ba6f445"], ["updated_at", "2014-10-08 22:34:20.218887"], ["username", "70340a975dd58fd6f6c9965e1fb38233"]]
18468
+  (0.6ms) commit transaction
18469
+  (0.0ms) begin transaction
18470
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.221316"], ["email", "lilla_kuphal@windlerswaniawski.biz"], ["name", "Vicky Cremin"], ["password_hash", "e65c113f57dfeebc176954735bfc11b5"], ["updated_at", "2014-10-08 22:34:20.221316"], ["username", "82fcdbbf1d587163a5eb3af08f8e62ee"]]
18471
+  (0.6ms) commit transaction
18472
+  (0.0ms) begin transaction
18473
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.223066"], ["email", "andreane.quigley@abbottwatsica.info"], ["name", "Nathan Torp"], ["password_hash", "71efe923477b499a63a2ce089547ef7b"], ["updated_at", "2014-10-08 22:34:20.223066"], ["username", "e66a504dc8af364551cfb9bc68000b97"]]
18474
+  (0.6ms) commit transaction
18475
+  (0.0ms) begin transaction
18476
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.224799"], ["email", "elisabeth.flatley@pouroschamplin.com"], ["name", "Damaris Toy"], ["password_hash", "1f2eddd9230638258baff8c259f33ccd"], ["updated_at", "2014-10-08 22:34:20.224799"], ["username", "8ba7102b8f6a4451a7dcfc9145d4100d"]]
18477
+  (0.6ms) commit transaction
18478
+  (0.0ms) begin transaction
18479
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.226520"], ["email", "cody.nitzsche@hermiston.name"], ["name", "Miss Abdullah Collier"], ["password_hash", "c33b8863441b5cf49430e3e36b4d85a8"], ["updated_at", "2014-10-08 22:34:20.226520"], ["username", "31d30cc70d05d08e54d9f4e7743197f9"]]
18480
+  (0.6ms) commit transaction
18481
+  (0.0ms) begin transaction
18482
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.228243"], ["email", "casimir.romaguera@feil.com"], ["name", "Kamryn Schoen"], ["password_hash", "ecbd4b9b1f677c5547a8b58df4d3e279"], ["updated_at", "2014-10-08 22:34:20.228243"], ["username", "987b61604831551e207225f7fff4701a"]]
18483
+  (0.7ms) commit transaction
18484
+  (0.0ms) begin transaction
18485
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.230057"], ["email", "jonas_zieme@powlowski.net"], ["name", "Eladio Yundt"], ["password_hash", "8fb788843e459dd9ae41413d41e8bc69"], ["updated_at", "2014-10-08 22:34:20.230057"], ["username", "34fd8cfbbebd528d3f2abda481300fcc"]]
18486
+  (0.6ms) commit transaction
18487
+  (0.0ms) begin transaction
18488
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.231719"], ["email", "michelle@walterondricka.org"], ["name", "Jaida Walter"], ["password_hash", "9c10a59dca73697acd7511b8c498af38"], ["updated_at", "2014-10-08 22:34:20.231719"], ["username", "ec3b28ebc539d3f1f831aea76c86bfff"]]
18489
+  (0.7ms) commit transaction
18490
+  (0.0ms) begin transaction
18491
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.233492"], ["email", "floy_okon@schimmel.name"], ["name", "Adelbert Farrell"], ["password_hash", "e6cea6ef234a8ba294e3359ed6d6e62e"], ["updated_at", "2014-10-08 22:34:20.233492"], ["username", "d254708a0abcafad7062c8bad760f369"]]
18492
+  (0.6ms) commit transaction
18493
+  (0.0ms) begin transaction
18494
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.235242"], ["email", "wilson_murray@reichel.com"], ["name", "Destiney Harris"], ["password_hash", "fa995ab9c95dbda0aa45bbb5a4118c05"], ["updated_at", "2014-10-08 22:34:20.235242"], ["username", "a0fb77885de5ed7c36e7ffc21e7e6cf7"]]
18495
+  (0.6ms) commit transaction
18496
+  (0.0ms) begin transaction
18497
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.236946"], ["email", "luz@oreilly.org"], ["name", "Jonathon Lynch"], ["password_hash", "654f79a6f8b4385f17d96d5e623437ff"], ["updated_at", "2014-10-08 22:34:20.236946"], ["username", "3bc711e21f623f36d533be289ec95093"]]
18498
+  (0.6ms) commit transaction
18499
+  (0.0ms) begin transaction
18500
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.238677"], ["email", "adelle@gleichner.name"], ["name", "Viviane Cremin"], ["password_hash", "756d9ea724b4e0849ddfa043c1678e15"], ["updated_at", "2014-10-08 22:34:20.238677"], ["username", "bfa23d73a52de7b6d188c8c20e8990c6"]]
18501
+  (0.7ms) commit transaction
18502
+  (0.0ms) begin transaction
18503
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.240582"], ["email", "jody@kubstehr.name"], ["name", "Cristal McGlynn"], ["password_hash", "b6b09d1317645578d11034ae4ef09760"], ["updated_at", "2014-10-08 22:34:20.240582"], ["username", "9113e1be31cf2ed7b324bff88bcd969c"]]
18504
+  (0.6ms) commit transaction
18505
+  (0.0ms) begin transaction
18506
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.242310"], ["email", "elroy.ko@romaguerahintz.com"], ["name", "Christ Keebler"], ["password_hash", "3e904f416eb78bdc9de4c642901d7300"], ["updated_at", "2014-10-08 22:34:20.242310"], ["username", "0b8e09b8c16b82018ee10ddd3c3bfaaa"]]
18507
+  (0.6ms) commit transaction
18508
+  (0.0ms) begin transaction
18509
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.244090"], ["email", "alexzander_schamberger@kuhicwindler.com"], ["name", "Thea Schumm"], ["password_hash", "d0c4c9469d2e42cf49f6fd8c2340d515"], ["updated_at", "2014-10-08 22:34:20.244090"], ["username", "55a552d7c098841cfa889a45b8b963e9"]]
18510
+  (0.6ms) commit transaction
18511
+  (0.0ms) begin transaction
18512
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.245796"], ["email", "javier@okeefe.name"], ["name", "Miss Lilliana Fay"], ["password_hash", "a04358a500a7909f286da010a8182156"], ["updated_at", "2014-10-08 22:34:20.245796"], ["username", "399d09dac4a6d9446c72f5c1745d098c"]]
18513
+  (0.6ms) commit transaction
18514
+  (0.0ms) begin transaction
18515
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.247507"], ["email", "rico@jacobsrice.info"], ["name", "Jacynthe Rice"], ["password_hash", "f1de7145f498f8e0854955e0cf0c87b1"], ["updated_at", "2014-10-08 22:34:20.247507"], ["username", "61a7f6800ae513037577e496ad5c4067"]]
18516
+  (0.6ms) commit transaction
18517
+  (0.0ms) begin transaction
18518
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.249204"], ["email", "eldred@larson.com"], ["name", "Marco Hartmann Sr."], ["password_hash", "2b5bf0d4f731319f7e92689f83f4f3ef"], ["updated_at", "2014-10-08 22:34:20.249204"], ["username", "3fa748877128637b29211b43b8886258"]]
18519
+  (0.6ms) commit transaction
18520
+  (0.0ms) begin transaction
18521
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.250935"], ["email", "fabiola@dare.name"], ["name", "Carrie Stokes DVM"], ["password_hash", "b18ea9f6feea6f004a638f551c23cbf4"], ["updated_at", "2014-10-08 22:34:20.250935"], ["username", "530a53174269c95a53d8bf31a6bd63f8"]]
18522
+  (0.6ms) commit transaction
18523
+  (0.0ms) begin transaction
18524
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.252672"], ["email", "hermina@boehmkoch.com"], ["name", "Eugenia Runte III"], ["password_hash", "5d7d3e4649e7736598adf70a8bccf0a5"], ["updated_at", "2014-10-08 22:34:20.252672"], ["username", "7fed82f1290a4be37b8bc91937bb11b2"]]
18525
+  (0.6ms) commit transaction
18526
+  (0.0ms) begin transaction
18527
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.254364"], ["email", "raheem@hermannpowlowski.biz"], ["name", "Destiney Lueilwitz"], ["password_hash", "a47fe1d05df320d18b03fa44da2c7c74"], ["updated_at", "2014-10-08 22:34:20.254364"], ["username", "5d237e9b3e1e9bc2b4bf3237d812fa12"]]
18528
+  (0.6ms) commit transaction
18529
+  (0.0ms) begin transaction
18530
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.256062"], ["email", "briana_okeefe@price.com"], ["name", "Leone Koelpin"], ["password_hash", "d4e318d945230ce77a912887105709dd"], ["updated_at", "2014-10-08 22:34:20.256062"], ["username", "974947fa86edb026c734a89a4d048a2b"]]
18531
+  (0.6ms) commit transaction
18532
+  (0.0ms) begin transaction
18533
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.257780"], ["email", "carlee@gerlach.net"], ["name", "Merl Smitham"], ["password_hash", "963704887e0dcbfa57fd547e3c1553e8"], ["updated_at", "2014-10-08 22:34:20.257780"], ["username", "e9f38842fc606d1d43eda6c905e818a1"]]
18534
+  (0.6ms) commit transaction
18535
+  (0.0ms) begin transaction
18536
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.259408"], ["email", "rasheed_wiza@lueilwitz.name"], ["name", "Margarette Berge"], ["password_hash", "c3b975a5912c8eeb65c8c1727a774bd6"], ["updated_at", "2014-10-08 22:34:20.259408"], ["username", "f4f407762b6a4a6e478807ecbf5ec72c"]]
18537
+  (0.7ms) commit transaction
18538
+  (0.0ms) begin transaction
18539
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.261172"], ["email", "geoffrey.hilpert@smithlubowitz.biz"], ["name", "Arnoldo Hahn Sr."], ["password_hash", "0623499803bf759fda1e9ad42516c5ab"], ["updated_at", "2014-10-08 22:34:20.261172"], ["username", "c0e064d59611cd86240f271632ea1183"]]
18540
+  (0.7ms) commit transaction
18541
+  (0.0ms) begin transaction
18542
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.262957"], ["email", "bettie_kaulke@kelertromp.biz"], ["name", "Ashlynn Littel"], ["password_hash", "6d4f9fa29e4528f17bb293a595106b3c"], ["updated_at", "2014-10-08 22:34:20.262957"], ["username", "61ca4baba7c505acd73c9412094df13b"]]
18543
+  (0.6ms) commit transaction
18544
+  (0.0ms) begin transaction
18545
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.264673"], ["email", "bernita_littel@frami.name"], ["name", "Makayla Lebsack"], ["password_hash", "fb9aa6d6f3c47efe5ea8c81faed4e70a"], ["updated_at", "2014-10-08 22:34:20.264673"], ["username", "3acf0297f69a1dc2ccd4f790046b3f06"]]
18546
+  (0.7ms) commit transaction
18547
+  (0.0ms) begin transaction
18548
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.266498"], ["email", "sid@mooreparker.info"], ["name", "Sven Goodwin"], ["password_hash", "af87b145fac7c002f12ba100dc69deef"], ["updated_at", "2014-10-08 22:34:20.266498"], ["username", "5c14655d2b31a8ab6307594c5e57a64c"]]
18549
+  (0.7ms) commit transaction
18550
+  (0.0ms) begin transaction
18551
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.268363"], ["email", "mertie@adams.net"], ["name", "Baylee O'Reilly"], ["password_hash", "441242ea89bd399e87fa7b2bbd909ec2"], ["updated_at", "2014-10-08 22:34:20.268363"], ["username", "d9438875d7619c0cda0b86230ffb4ae1"]]
18552
+  (0.6ms) commit transaction
18553
+  (0.0ms) begin transaction
18554
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.270069"], ["email", "jeika@bergstrom.info"], ["name", "Laurianne Kirlin"], ["password_hash", "00b72cb32102c335db8a4a2e3a10e609"], ["updated_at", "2014-10-08 22:34:20.270069"], ["username", "ec9692a5bbd9cb35355967b9ba795ef9"]]
18555
+  (0.7ms) commit transaction
18556
+  (0.0ms) begin transaction
18557
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.271800"], ["email", "kyla@wunschborer.biz"], ["name", "Jayce Parker"], ["password_hash", "969dd9fbec323cd6323683f8e4efeb1e"], ["updated_at", "2014-10-08 22:34:20.271800"], ["username", "c92a30dfe414951773efe9ab5f760e35"]]
18558
+  (0.6ms) commit transaction
18559
+  (0.0ms) begin transaction
18560
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.273439"], ["email", "ernie_lowe@turner.name"], ["name", "Camren Ernser"], ["password_hash", "48fd2a7d4cf648163c9e24594f21f8c1"], ["updated_at", "2014-10-08 22:34:20.273439"], ["username", "e4477d6e62eea7db912a79ff7ae468f8"]]
18561
+  (0.6ms) commit transaction
18562
+  (0.0ms) begin transaction
18563
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.275104"], ["email", "lawrence@ondricka.org"], ["name", "Rebecca Kuvalis"], ["password_hash", "c7107a26252ea29a5f5667c8eb039c73"], ["updated_at", "2014-10-08 22:34:20.275104"], ["username", "e873908ca5be6e34f605e502197e8043"]]
18564
+  (0.6ms) commit transaction
18565
+  (0.0ms) begin transaction
18566
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.276801"], ["email", "demond.eichmann@vonruedenreichel.info"], ["name", "Patience Rau"], ["password_hash", "48e8e6594da0fed5201af431cf8a13ac"], ["updated_at", "2014-10-08 22:34:20.276801"], ["username", "74be6b4339530c73c9b60a68abc5fd82"]]
18567
+  (0.6ms) commit transaction
18568
+  (0.0ms) begin transaction
18569
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.278480"], ["email", "jazlyn_bernhard@feeney.biz"], ["name", "Chris Emmerich"], ["password_hash", "bb2c48b75afdf7b2952b9d92d74833f7"], ["updated_at", "2014-10-08 22:34:20.278480"], ["username", "a4a9b0419f15eb7d025ca578694ad498"]]
18570
+  (0.6ms) commit transaction
18571
+  (0.0ms) begin transaction
18572
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.280173"], ["email", "jasmin_gaylord@fadel.com"], ["name", "Tyshawn Ullrich"], ["password_hash", "08fcfba2510071010b5d83913e5a49ec"], ["updated_at", "2014-10-08 22:34:20.280173"], ["username", "ed9f2c0c7ab4934f1ea2df2344a773f4"]]
18573
+  (0.7ms) commit transaction
18574
+  (0.0ms) begin transaction
18575
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.281944"], ["email", "kamille@lakinemmerich.name"], ["name", "Maximillia Batz"], ["password_hash", "708d0fb5293907192043e152bde5ab57"], ["updated_at", "2014-10-08 22:34:20.281944"], ["username", "7be400881e07d338dbfc43479f2f67db"]]
18576
+  (0.7ms) commit transaction
18577
+  (0.0ms) begin transaction
18578
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.283661"], ["email", "meagan.kihn@hyattondricka.info"], ["name", "Serenity Dooley III"], ["password_hash", "d109c4f1f9d370d3d7f67030eaf8f6cb"], ["updated_at", "2014-10-08 22:34:20.283661"], ["username", "dc209d6332b86bdac7ba105cbeddad59"]]
18579
+  (0.6ms) commit transaction
18580
+  (0.0ms) begin transaction
18581
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.285342"], ["email", "marlon.skiles@haag.info"], ["name", "Daren Kozey DDS"], ["password_hash", "7d120f6f8e0569490a63519f15631b60"], ["updated_at", "2014-10-08 22:34:20.285342"], ["username", "0ea2bd57645a54ae939e7c4120294a6b"]]
18582
+  (0.6ms) commit transaction
18583
+  (0.0ms) begin transaction
18584
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.287014"], ["email", "sammy@vonruedenstoltenberg.biz"], ["name", "Willard Kuhic"], ["password_hash", "12d1b6e4616b6a9227fe80f5318c71c4"], ["updated_at", "2014-10-08 22:34:20.287014"], ["username", "7cf07889a54fb91af59ba3dcbb767b95"]]
18585
+  (0.6ms) commit transaction
18586
+  (0.0ms) begin transaction
18587
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.288729"], ["email", "jonathon@runolfsdottir.com"], ["name", "Henri Koch"], ["password_hash", "e7bacf90d1d32cd3480e5a6dbc7c4c8d"], ["updated_at", "2014-10-08 22:34:20.288729"], ["username", "2db872d4c858f2050fb2718eba27e7f1"]]
18588
+  (0.7ms) commit transaction
18589
+  (0.0ms) begin transaction
18590
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.290465"], ["email", "juwan@anderson.org"], ["name", "Tate Spinka"], ["password_hash", "d7060846d3aece520109c42b87c43312"], ["updated_at", "2014-10-08 22:34:20.290465"], ["username", "b2eca13d8ac21c54671c50126f1df31b"]]
18591
+  (0.7ms) commit transaction
18592
+  (0.0ms) begin transaction
18593
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.292363"], ["email", "willy.lakin@boylebernier.info"], ["name", "Milford Klein"], ["password_hash", "25a9e7676f5899612b6e927193500da4"], ["updated_at", "2014-10-08 22:34:20.292363"], ["username", "168bde1bf6fbb17421a561cf748890d2"]]
18594
+  (0.6ms) commit transaction
18595
+  (0.1ms) begin transaction
18596
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.294118"], ["email", "zena@shanahan.info"], ["name", "Alexzander Reinger"], ["password_hash", "e04973267e87d7738e31e9de9e1c8146"], ["updated_at", "2014-10-08 22:34:20.294118"], ["username", "d4ff5fc8232157bbb39862e7f4575241"]]
18597
+  (0.6ms) commit transaction
18598
+  (0.0ms) begin transaction
18599
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.295827"], ["email", "kimberly_goodwin@funk.com"], ["name", "Ms. Ransom Gulgowski"], ["password_hash", "5d29d0beeb425e67c066a8ea118c507e"], ["updated_at", "2014-10-08 22:34:20.295827"], ["username", "a84cd3db0c884ba035cb1e9deedc292a"]]
18600
+  (0.6ms) commit transaction
18601
+  (0.0ms) begin transaction
18602
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.297534"], ["email", "sven@skiles.info"], ["name", "Finn Gusikowski"], ["password_hash", "7a4406f7e2ad0b7ac178c67b0d1d620f"], ["updated_at", "2014-10-08 22:34:20.297534"], ["username", "9d0bcef4f7e07209e88724204dc6e694"]]
18603
+  (0.6ms) commit transaction
18604
+  (0.0ms) begin transaction
18605
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.299207"], ["email", "callie@bashirian.name"], ["name", "Sabrina Parker"], ["password_hash", "bb751eba702b91419642316427c215d2"], ["updated_at", "2014-10-08 22:34:20.299207"], ["username", "c1b5c5843267bc91fe6241dac56332f6"]]
18606
+  (0.6ms) commit transaction
18607
+  (0.0ms) begin transaction
18608
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.300870"], ["email", "margie@kleinschmitt.com"], ["name", "Marlene Lockman"], ["password_hash", "30c9f5ef88442443de825a274f8421c7"], ["updated_at", "2014-10-08 22:34:20.300870"], ["username", "96841e38bc07d5b6da165a970534d1e4"]]
18609
+  (0.6ms) commit transaction
18610
+  (0.0ms) begin transaction
18611
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.302602"], ["email", "kyla_cronin@bosco.net"], ["name", "Jeanie Orn"], ["password_hash", "fd0f8f83569cbd57a7277829a8d59ee7"], ["updated_at", "2014-10-08 22:34:20.302602"], ["username", "1a6cb368019d2e224b4ee45da99d70ae"]]
18612
+  (0.7ms) commit transaction
18613
+  (0.0ms) begin transaction
18614
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.304425"], ["email", "jakayla.daugherty@little.net"], ["name", "Ashton Kuhn"], ["password_hash", "b807181db22a7abb4014911319259d95"], ["updated_at", "2014-10-08 22:34:20.304425"], ["username", "542333fd4bbeddafa173c4bd8cf51353"]]
18615
+  (0.6ms) commit transaction
18616
+  (0.0ms) begin transaction
18617
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.306160"], ["email", "vidal_hilpert@dachkeler.biz"], ["name", "Kylie Crona"], ["password_hash", "c5888a3860dc4b1ba30300c93b68aef7"], ["updated_at", "2014-10-08 22:34:20.306160"], ["username", "3106a0147659beeb276419029f1227b1"]]
18618
+  (0.7ms) commit transaction
18619
+  (0.0ms) begin transaction
18620
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.307918"], ["email", "icie.schoen@prohaska.org"], ["name", "Ezequiel Bartoletti"], ["password_hash", "3df86d0d5dda5d996e83716964267030"], ["updated_at", "2014-10-08 22:34:20.307918"], ["username", "3a28826571066030420012e1b775c83e"]]
18621
+  (0.6ms) commit transaction
18622
+  (0.0ms) begin transaction
18623
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.309665"], ["email", "cecelia.marquardt@paucek.name"], ["name", "Miss Kaylin Kshlerin"], ["password_hash", "dbeb6a53e1283212893d92d27db939d1"], ["updated_at", "2014-10-08 22:34:20.309665"], ["username", "280837a5ff98657c177d92b2837cf4e3"]]
18624
+  (0.6ms) commit transaction
18625
+  (0.0ms) begin transaction
18626
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.311403"], ["email", "estrella_stehr@collierfay.net"], ["name", "Jermaine Thompson"], ["password_hash", "4836149928033fa260108b50ea9df584"], ["updated_at", "2014-10-08 22:34:20.311403"], ["username", "b645c12d454c5607211de96e7ebfecfb"]]
18627
+  (0.7ms) commit transaction
18628
+  (0.0ms) begin transaction
18629
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.313145"], ["email", "eugene_doyle@lednerfriesen.biz"], ["name", "Ava Nitzsche"], ["password_hash", "d13c38ff5e1b0f7e62752b3e66d15512"], ["updated_at", "2014-10-08 22:34:20.313145"], ["username", "69e35663547a9f36f2c1d8cb460d0fb9"]]
18630
+  (0.7ms) commit transaction
18631
+  (0.0ms) begin transaction
18632
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.314887"], ["email", "marisa@skileswiegand.com"], ["name", "Giovanni Trantow DVM"], ["password_hash", "838aaec3cb646179cb11fe2ddc01faa6"], ["updated_at", "2014-10-08 22:34:20.314887"], ["username", "5b49df0312a98d93b8476ec68e6d878f"]]
18633
+  (0.6ms) commit transaction
18634
+  (0.0ms) begin transaction
18635
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.316561"], ["email", "zackery@rohan.name"], ["name", "Quincy Kiehn"], ["password_hash", "b6b054117d7ed714d2777b619d3eede3"], ["updated_at", "2014-10-08 22:34:20.316561"], ["username", "d11d1d1852be35cc41a4b50dd270ed29"]]
18636
+  (0.6ms) commit transaction
18637
+  (0.0ms) begin transaction
18638
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.318247"], ["email", "margarita@moen.com"], ["name", "Judson Von I"], ["password_hash", "9ebffb2514f9e340740d6f5941a8c23b"], ["updated_at", "2014-10-08 22:34:20.318247"], ["username", "3d6b4cfce2a8a2bcd357c9136fe6c1c8"]]
18639
+  (0.6ms) commit transaction
18640
+  (0.0ms) begin transaction
18641
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.319952"], ["email", "davon@howe.biz"], ["name", "Mrs. Aletha Christiansen"], ["password_hash", "34e554abadde921ac1b732707e105ac3"], ["updated_at", "2014-10-08 22:34:20.319952"], ["username", "3b9ea026693f15cedf52c941d617355d"]]
18642
+  (0.7ms) commit transaction
18643
+  (0.0ms) begin transaction
18644
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.321697"], ["email", "jordane.brown@wizafritsch.com"], ["name", "Tanner Deckow"], ["password_hash", "a0abe4838e5fcb771a5b00ff53cf8dca"], ["updated_at", "2014-10-08 22:34:20.321697"], ["username", "0cfe8b4b84596654301eab3072957926"]]
18645
+  (0.7ms) commit transaction
18646
+  (0.0ms) begin transaction
18647
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.323536"], ["email", "sienna@farrellspinka.com"], ["name", "Ms. Mortimer White"], ["password_hash", "dc1cc2e27bc46ea90e9074ea4ee628ab"], ["updated_at", "2014-10-08 22:34:20.323536"], ["username", "6295cd6e0063f734cf2f7e46709f91f3"]]
18648
+  (0.6ms) commit transaction
18649
+  (0.0ms) begin transaction
18650
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.325180"], ["email", "bill@boehmdibbert.com"], ["name", "Ms. Brendon Larkin"], ["password_hash", "e144e746f4a673fcb16527dc0663f24a"], ["updated_at", "2014-10-08 22:34:20.325180"], ["username", "6807ce415d71cf3d2ecf3098484a3dd0"]]
18651
+  (0.7ms) commit transaction
18652
+  (0.0ms) begin transaction
18653
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.326880"], ["email", "darrin@abshire.name"], ["name", "Adrain McKenzie"], ["password_hash", "598b4df71a101df1f81bc389b4546cf0"], ["updated_at", "2014-10-08 22:34:20.326880"], ["username", "4555388c86d85a387ae893456fee33de"]]
18654
+  (0.6ms) commit transaction
18655
+  (0.0ms) begin transaction
18656
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.328580"], ["email", "leatha.harris@boscohegmann.org"], ["name", "Annamarie Lubowitz"], ["password_hash", "491086996c11545cbcde49702910b58d"], ["updated_at", "2014-10-08 22:34:20.328580"], ["username", "0f33a7d3e60a443fe18144e4143d137a"]]
18657
+  (0.6ms) commit transaction
18658
+  (0.0ms) begin transaction
18659
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.330318"], ["email", "je_okeefe@lemke.net"], ["name", "Jacey Beahan"], ["password_hash", "871026ad097e66d67f3b6039ffacb003"], ["updated_at", "2014-10-08 22:34:20.330318"], ["username", "e2fa568bc330382f532e88e8d3f70cf9"]]
18660
+  (0.6ms) commit transaction
18661
+  (0.0ms) begin transaction
18662
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.332004"], ["email", "florencio@dietrichpadberg.org"], ["name", "George Cummerata"], ["password_hash", "59efc2e77ab6a22d2e0e059a0d8aa63d"], ["updated_at", "2014-10-08 22:34:20.332004"], ["username", "8862334c3b165fdee0e6195401de633c"]]
18663
+  (0.7ms) commit transaction
18664
+  (0.0ms) begin transaction
18665
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.333751"], ["email", "drake.bechtelar@jerde.com"], ["name", "Dr. Elizabeth Krajcik"], ["password_hash", "b4678f2625388d4e1170f1d165b3541f"], ["updated_at", "2014-10-08 22:34:20.333751"], ["username", "71e2a6be0ac6a1f37676e549782ab661"]]
18666
+  (0.7ms) commit transaction
18667
+  (0.0ms) begin transaction
18668
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.335515"], ["email", "adah@treutel.org"], ["name", "Marquise Cronin"], ["password_hash", "8a38ec4c1612c7662855f4427fae5df1"], ["updated_at", "2014-10-08 22:34:20.335515"], ["username", "db5451e3b20ba864212384322ff1aeeb"]]
18669
+  (0.6ms) commit transaction
18670
+  (0.0ms) begin transaction
18671
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.337253"], ["email", "keshaun.yundt@borer.org"], ["name", "Shyanne Brakus"], ["password_hash", "127a276a729b00954d5c3152840d13ba"], ["updated_at", "2014-10-08 22:34:20.337253"], ["username", "5c2877c1af34da2276df98025ec2f1db"]]
18672
+  (0.7ms) commit transaction
18673
+  (0.0ms) begin transaction
18674
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.339091"], ["email", "shawn.murray@eichmann.biz"], ["name", "Ashley Balistreri"], ["password_hash", "477f078ffef574b42908bab1d6d30574"], ["updated_at", "2014-10-08 22:34:20.339091"], ["username", "e2c405a8f86777084707b22ab13f5d9e"]]
18675
+  (0.6ms) commit transaction
18676
+  (0.0ms) begin transaction
18677
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.340775"], ["email", "fleta.deckow@schinner.name"], ["name", "Ismael Ferry"], ["password_hash", "9a260cb55455463c4d7da89dda28c223"], ["updated_at", "2014-10-08 22:34:20.340775"], ["username", "af35bb06e1d26b8b0029d5cb0b3ddb15"]]
18678
+  (0.7ms) commit transaction
18679
+  (0.0ms) begin transaction
18680
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.342509"], ["email", "hellen_mueller@frami.name"], ["name", "Lisette Little"], ["password_hash", "0855321812c8ffa1f1c168584e099e29"], ["updated_at", "2014-10-08 22:34:20.342509"], ["username", "233d98852d1487f245e529f48754eb65"]]
18681
+  (0.7ms) commit transaction
18682
+  (0.0ms) begin transaction
18683
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.344362"], ["email", "vilma.stroman@flatley.com"], ["name", "Stephania Gottlieb"], ["password_hash", "a5ef6b1c985742c460eb4ce8db9f4438"], ["updated_at", "2014-10-08 22:34:20.344362"], ["username", "898fd7d098d1222a385c9c8837135e89"]]
18684
+  (0.6ms) commit transaction
18685
+  (0.0ms) begin transaction
18686
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.345974"], ["email", "deanna@vonrueden.com"], ["name", "Violette Streich"], ["password_hash", "3ed447cd613cb34f7201a4f85ec50300"], ["updated_at", "2014-10-08 22:34:20.345974"], ["username", "e875002061320e66cde018a224aab45f"]]
18687
+  (0.7ms) commit transaction
18688
+  (0.0ms) begin transaction
18689
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.347723"], ["email", "sid@wiza.name"], ["name", "Louie Jacobi IV"], ["password_hash", "291112133744de89a13613a30a6add04"], ["updated_at", "2014-10-08 22:34:20.347723"], ["username", "107dfe4a0ef54d21f93bd9b57a789afb"]]
18690
+  (0.7ms) commit transaction
18691
+  (0.0ms) begin transaction
18692
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.349519"], ["email", "garnet_douglas@prohaskaleannon.info"], ["name", "Horacio Skiles"], ["password_hash", "bb0208e042e99706cc1c2c2d3c986a1b"], ["updated_at", "2014-10-08 22:34:20.349519"], ["username", "5f83f8ca62de56cc76fb00f0c74ea9ae"]]
18693
+  (0.6ms) commit transaction
18694
+  (0.0ms) begin transaction
18695
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.351185"], ["email", "ernesto_douglas@waelchi.net"], ["name", "Dariana Crooks"], ["password_hash", "5c8714af86bfc01429f91826195e45e9"], ["updated_at", "2014-10-08 22:34:20.351185"], ["username", "a95a3756894db9caec2fe461622b6854"]]
18696
+  (0.6ms) commit transaction
18697
+  (0.0ms) begin transaction
18698
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.352873"], ["email", "saige@leannon.name"], ["name", "Melyssa Stoltenberg"], ["password_hash", "4133f6f4f67b34bef9deaf4541a2b8e2"], ["updated_at", "2014-10-08 22:34:20.352873"], ["username", "36da7b94f9a7a2230004b0e1646024ec"]]
18699
+  (0.7ms) commit transaction
18700
+  (0.0ms) begin transaction
18701
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.354686"], ["email", "kaia.emard@prosacco.net"], ["name", "Gunner Rath"], ["password_hash", "04d481292ccea5d5eb723ce212547129"], ["updated_at", "2014-10-08 22:34:20.354686"], ["username", "5deba31f333810ec13e8d78b4fe235a1"]]
18702
+  (0.6ms) commit transaction
18703
+  (0.0ms) begin transaction
18704
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.356330"], ["email", "maxwell@sanfordmetz.info"], ["name", "Elinor McLaughlin"], ["password_hash", "36cf6b331c6c219013fe583bc56f75f4"], ["updated_at", "2014-10-08 22:34:20.356330"], ["username", "ac57dc5664307c98a664f4e6d7cad001"]]
18705
+  (0.6ms) commit transaction
18706
+  (0.0ms) begin transaction
18707
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.358030"], ["email", "axel.west@sipes.biz"], ["name", "Sabryna Connelly"], ["password_hash", "57c2157b1fae34040cbb1c8a841d0142"], ["updated_at", "2014-10-08 22:34:20.358030"], ["username", "06b8018021f1021fb3c23c8035389b9f"]]
18708
+  (0.7ms) commit transaction
18709
+  (0.0ms) begin transaction
18710
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.359755"], ["email", "gunnar@koch.name"], ["name", "Bryon Windler"], ["password_hash", "6eff23177febb34223512aa4baceec49"], ["updated_at", "2014-10-08 22:34:20.359755"], ["username", "7431c98ab4bd392f3224088f003cc49e"]]
18711
+  (0.6ms) commit transaction
18712
+  (0.0ms) begin transaction
18713
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.361449"], ["email", "alyson@swiftohara.biz"], ["name", "Cory Russel I"], ["password_hash", "6bdeb2ef0a48cfb59d53e690f28f7955"], ["updated_at", "2014-10-08 22:34:20.361449"], ["username", "993f25fd842e3a762f3a4d83abdea9e6"]]
18714
+  (0.6ms) commit transaction
18715
+  (0.0ms) begin transaction
18716
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.363231"], ["email", "bethel.barrows@smitham.info"], ["name", "Rosalyn Dietrich"], ["password_hash", "26f6caae06e8e9dc05cec706f812cf28"], ["updated_at", "2014-10-08 22:34:20.363231"], ["username", "898d34292c07b9f78643554737741f7d"]]
18717
+  (0.6ms) commit transaction
18718
+  (0.0ms) begin transaction
18719
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.364902"], ["email", "karine@ferrytromp.biz"], ["name", "Billy Torphy"], ["password_hash", "d993f372113a22e997a7c4c4048328ad"], ["updated_at", "2014-10-08 22:34:20.364902"], ["username", "5a04be61e2809b7228ebe9f3a1b6ca2b"]]
18720
+  (0.6ms) commit transaction
18721
+  (0.0ms) begin transaction
18722
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.366613"], ["email", "kacie@hickleblanda.biz"], ["name", "Mrs. Ned Strosin"], ["password_hash", "3a64c4682cca2d0812af9a93c9c2d1c2"], ["updated_at", "2014-10-08 22:34:20.366613"], ["username", "e0b0fc5865edae4044454ced5b4b650e"]]
18723
+  (0.6ms) commit transaction
18724
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."name" LIKE '% doe%'
18725
+  (0.0ms) begin transaction
18726
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.369556"], ["email", "john@doe.com"], ["name", "John Doe"], ["password_hash", "d43384f61f0a30142a53c0576be2157d"], ["updated_at", "2014-10-08 22:34:20.369556"], ["username", "doejohn"]]
18727
+  (0.7ms) commit transaction
18728
+  (0.0ms) begin transaction
18729
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.371264"], ["email", "jane@doe.com"], ["name", "Jane Doe"], ["password_hash", "032f3136a1a962342df7c411f563b00d"], ["updated_at", "2014-10-08 22:34:20.371264"], ["username", "doejane"]]
18730
+  (0.6ms) commit transaction
18731
+  (0.0ms) begin transaction
18732
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-08 22:34:20.372865"], ["email", "jack@doe.com"], ["name", "Jack Doe"], ["password_hash", "6932a6e8359e52c958e73d1d184c4058"], ["updated_at", "2014-10-08 22:34:20.372865"], ["username", "doejack"]]
18733
+  (0.6ms) commit transaction
18734
+  (0.1ms) begin transaction
18735
+  (0.1ms) commit transaction
18736
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
18737
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
18738
+  (0.0ms) begin transaction
18739
+  (0.0ms) commit transaction
18740
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
18741
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
18742
+  (0.0ms) begin transaction
18743
+  (0.0ms) commit transaction
18744
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
18745
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
18746
+  (0.0ms) begin transaction
18747
+  (0.0ms) commit transaction
18748
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'DoE%'))
18749
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'DoE%')) ORDER BY "users"."created_at" ASC, "users"."id" ASC
18750
+  (0.0ms) begin transaction
18751
+  (0.0ms) commit transaction
18752
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'dOe%'))
18753
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'dOe%')) ORDER BY "users"."created_at" DESC, "users"."id" DESC
18754
+  (0.1ms) SELECT COUNT(*) FROM "users"
18755
+  (0.0ms) begin transaction
18756
+  (0.0ms) commit transaction
18757
+  (0.1ms) SELECT COUNT(*) FROM "users"
18758
+ User Load (0.5ms) SELECT "users".* FROM "users"
18759
+  (0.0ms) begin transaction
18760
+  (0.0ms) commit transaction
18761
+  (0.1ms) SELECT COUNT(*) FROM "users"
18762
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 0
18763
+  (0.0ms) begin transaction
18764
+  (0.0ms) commit transaction
18765
+  (0.1ms) SELECT COUNT(*) FROM "users"
18766
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 0
18767
+  (0.0ms) begin transaction
18768
+  (0.0ms) commit transaction
18769
+  (0.1ms) SELECT COUNT(*) FROM "users"
18770
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 20
18771
+  (0.0ms) begin transaction
18772
+  (0.0ms) commit transaction
18773
+  (0.1ms) SELECT COUNT(*) FROM "users"
18774
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 40
18775
+  (0.0ms) begin transaction
18776
+  (0.0ms) commit transaction
18777
+  (0.1ms) SELECT COUNT(*) FROM "users"
18778
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 60
18779
+  (0.0ms) begin transaction
18780
+  (0.0ms) commit transaction
18781
+  (0.1ms) SELECT COUNT(*) FROM "users"
18782
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 80
18783
+  (0.0ms) begin transaction
18784
+  (0.0ms) commit transaction
18785
+  (0.1ms) SELECT COUNT(*) FROM "users"
18786
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 19980
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstax_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dante Soares