any_login 1.5.3 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/any_login/application.css +3 -0
  3. data/app/controllers/any_login/application_controller.rb +1 -9
  4. data/app/views/any_login/_any_login.html.erb +4 -4
  5. data/app/views/any_login/assets/_css.html.erb +101 -0
  6. data/app/views/any_login/assets/_js.html.erb +25 -0
  7. data/config/routes.rb +0 -2
  8. data/lib/any_login/helpers.rb +3 -1
  9. data/lib/any_login/providers/devise.rb +1 -1
  10. data/lib/any_login/version.rb +1 -1
  11. data/test/rails_apps/authlogic/db/development.sqlite3 +0 -0
  12. data/test/rails_apps/authlogic/db/test.sqlite3 +0 -0
  13. data/test/rails_apps/authlogic/db/test.sqlite3-shm +0 -0
  14. data/test/rails_apps/authlogic/db/test.sqlite3-wal +0 -0
  15. data/test/rails_apps/authlogic/log/development.log +438 -0
  16. data/test/rails_apps/authlogic/log/test.log +1144 -0
  17. data/test/rails_apps/authlogic/tmp/development_secret.txt +1 -0
  18. data/test/rails_apps/authlogic/tmp/local_secret.txt +1 -0
  19. data/test/rails_apps/clearance/config/environment.rb +1 -0
  20. data/test/rails_apps/clearance/db/development.sqlite3 +0 -0
  21. data/test/rails_apps/clearance/db/test.sqlite3 +0 -0
  22. data/test/rails_apps/clearance/db/test.sqlite3-shm +0 -0
  23. data/test/rails_apps/clearance/db/test.sqlite3-wal +0 -0
  24. data/test/rails_apps/clearance/log/development.log +388 -0
  25. data/test/rails_apps/clearance/log/test.log +1110 -0
  26. data/test/rails_apps/clearance/tmp/development_secret.txt +1 -0
  27. data/test/rails_apps/clearance/tmp/local_secret.txt +1 -0
  28. data/test/rails_apps/devise/db/development.sqlite3 +0 -0
  29. data/test/rails_apps/devise/db/schema.rb +4 -4
  30. data/test/rails_apps/devise/db/test.sqlite3 +0 -0
  31. data/test/rails_apps/devise/db/test.sqlite3-shm +0 -0
  32. data/test/rails_apps/devise/db/test.sqlite3-wal +0 -0
  33. data/test/rails_apps/devise/log/development.log +1081 -0
  34. data/test/rails_apps/devise/log/test.log +2120 -0
  35. data/test/rails_apps/devise/tmp/development_secret.txt +1 -0
  36. data/test/rails_apps/devise/tmp/local_secret.txt +1 -0
  37. data/test/rails_apps/sorcery/db/development.sqlite3 +0 -0
  38. data/test/rails_apps/sorcery/db/test.sqlite3 +0 -0
  39. data/test/rails_apps/sorcery/db/test.sqlite3-shm +0 -0
  40. data/test/rails_apps/sorcery/db/test.sqlite3-wal +0 -0
  41. data/test/rails_apps/sorcery/log/development.log +247 -0
  42. data/test/rails_apps/sorcery/log/test.log +532 -0
  43. data/test/rails_apps/sorcery/tmp/development_secret.txt +1 -0
  44. data/test/rails_apps/sorcery/tmp/local_secret.txt +1 -0
  45. data/test/test_helper_common.rb +2 -1
  46. metadata +86 -7
  47. data/app/assets/javascripts/any_login/application.js +0 -23
@@ -0,0 +1 @@
1
+ 32cd0ad7e3b59a4bd2e68f15274e18fd6fd068c48073f9bb1f9a57a452c9d9d598c3b16f17935685a086cd0264f3218946cafd5ee2d37297a46a72f2ced458f9
@@ -0,0 +1 @@
1
+ ce7f45d03ba4791943e9f3713901a555ae0fd20b48133d2bda9b26e5dfd57ae4760303c47c7e23db884bb6ecccecadbf080e6265a26badd33fe245a33f83aaeb
@@ -2,4 +2,5 @@
2
2
  require_relative "application"
3
3
 
4
4
  # Initialize the Rails application.
5
+
5
6
  Rails.application.initialize!
File without changes
@@ -0,0 +1,388 @@
1
+  (1.5ms) SELECT sqlite_version(*)
2
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (1.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
4
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
+ Migrating to CreateUsers (20150907190739)
6
+ TRANSACTION (0.1ms) begin transaction
7
+  (0.6ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "age" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
8
+ ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150907190739"]]
9
+ TRANSACTION (1.2ms) commit transaction
10
+ Migrating to AddDeviseToUsers (20150907190846)
11
+ TRANSACTION (0.0ms) begin transaction
12
+  (0.5ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
13
+  (0.2ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
14
+  (0.4ms) ALTER TABLE "users" ADD "reset_password_token" varchar
15
+  (0.3ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
16
+  (0.2ms) ALTER TABLE "users" ADD "remember_created_at" datetime
17
+  (0.2ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
18
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
19
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
20
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
21
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
22
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
23
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
24
+ ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150907190846"]]
25
+ TRANSACTION (0.8ms) commit transaction
26
+ Migrating to PopulateTestUsers (20150909210357)
27
+ TRANSACTION (0.0ms) begin transaction
28
+  (0.5ms) ALTER TABLE "users" ADD "role" varchar
29
+  (0.3ms) ALTER TABLE "users" ADD "remember_token" varchar(128)
30
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn0@gmail.com"], ["LIMIT", 1]]
31
+ User Create (0.5ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 0"], ["age", 1], ["created_at", "2024-06-28 08:03:40.106493"], ["updated_at", "2024-06-28 08:03:40.106493"], ["email", "michaeljohn0@gmail.com"], ["encrypted_password", "$2a$12$f9SSMPJcm77TBQl6spgbde28s/shmsYti2f.lHnn3lREOjkH04hJG"], ["role", "moderator"], ["remember_token", "3c6c3346c4af61da66eec05f73fa46ce223729d9"]]
32
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan1@gmail.com"], ["LIMIT", 1]]
33
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 1"], ["age", 43], ["created_at", "2024-06-28 08:03:40.397962"], ["updated_at", "2024-06-28 08:03:40.397962"], ["email", "stan1@gmail.com"], ["encrypted_password", "$2a$12$8K9oh9qsRGGSMkoZE1UGw.PldFoxgxiJgbwkDVgPoyX85AbwSEzki"], ["role", "admin"], ["remember_token", "f3b3ab962544b95207074f31c0913eaf58ec4100"]]
34
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor2@gmail.com"], ["LIMIT", 1]]
35
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 2"], ["age", 44], ["created_at", "2024-06-28 08:03:40.674460"], ["updated_at", "2024-06-28 08:03:40.674460"], ["email", "igor2@gmail.com"], ["encrypted_password", "$2a$12$nxqS/O2OEL0SvTQDhJECvO2al3N0M3S9rWZ4J1GDGrWPb9Ictrr9m"], ["role", "admin"], ["remember_token", "2a8d16c7ce58645a7e41b3078630660902cefb3b"]]
36
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn3@gmail.com"], ["LIMIT", 1]]
37
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 3"], ["age", 15], ["created_at", "2024-06-28 08:03:40.942706"], ["updated_at", "2024-06-28 08:03:40.942706"], ["email", "michaeljohn3@gmail.com"], ["encrypted_password", "$2a$12$Au3ucpji0NdVLtATG8h9seAH3I2Z6lBHDUoahnFjmvHTKK.blyk9O"], ["role", "moderator"], ["remember_token", "939b8ca0f3b129896014baf97ba69dddec394c7d"]]
38
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn4@gmail.com"], ["LIMIT", 1]]
39
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 4"], ["age", 29], ["created_at", "2024-06-28 08:03:41.212609"], ["updated_at", "2024-06-28 08:03:41.212609"], ["email", "michaeljohn4@gmail.com"], ["encrypted_password", "$2a$12$WeZ4ntuatgmmdEAvFZmMaOTVorq5PnTAgS8cJRTnr3u4Gx/eXSNZm"], ["role", "user"], ["remember_token", "da65de9644244a45174a88684155a1124258fad2"]]
40
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob5@gmail.com"], ["LIMIT", 1]]
41
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 5"], ["age", 31], ["created_at", "2024-06-28 08:03:41.491090"], ["updated_at", "2024-06-28 08:03:41.491090"], ["email", "bob5@gmail.com"], ["encrypted_password", "$2a$12$PrS4S2en4JghlbfGvlqFGu0kYbiEs96UJEKCh0jFOhFM1pdSOMXjC"], ["role", "moderator"], ["remember_token", "2a81bcc84db4a07c3b168ee899003f247b53730f"]]
42
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan6@gmail.com"], ["LIMIT", 1]]
43
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 6"], ["age", 57], ["created_at", "2024-06-28 08:03:41.761801"], ["updated_at", "2024-06-28 08:03:41.761801"], ["email", "stan6@gmail.com"], ["encrypted_password", "$2a$12$2tIFx1k5XDLaHKyCekSOjeY3l7N5ac0j2tuHDaxKBjTE7iQf6bif6"], ["role", "admin"], ["remember_token", "f644f779f3a68e81e0088ae076a11bc24ff26b93"]]
44
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob7@gmail.com"], ["LIMIT", 1]]
45
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 7"], ["age", 98], ["created_at", "2024-06-28 08:03:42.118955"], ["updated_at", "2024-06-28 08:03:42.118955"], ["email", "bob7@gmail.com"], ["encrypted_password", "$2a$12$IV1XpnMsA8mrjuRRElvyKewcgqdJ8LVLT2QOw2Abs22tEXLZ5h3Di"], ["role", "admin"], ["remember_token", "eb5d46957df4f37be6aaf89052e52e83d44212c7"]]
46
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor8@gmail.com"], ["LIMIT", 1]]
47
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 8"], ["age", 85], ["created_at", "2024-06-28 08:03:42.419489"], ["updated_at", "2024-06-28 08:03:42.419489"], ["email", "igor8@gmail.com"], ["encrypted_password", "$2a$12$ZdaLR61DYbfFkFn9Q80qx.mNoQKIasA9/CTUj3uksKHyhaq99JJEm"], ["role", "user"], ["remember_token", "e462bbd71f43d366909cea989676cbc81c45a156"]]
48
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn9@gmail.com"], ["LIMIT", 1]]
49
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 9"], ["age", 59], ["created_at", "2024-06-28 08:03:42.695854"], ["updated_at", "2024-06-28 08:03:42.695854"], ["email", "michaeljohn9@gmail.com"], ["encrypted_password", "$2a$12$jlA1XroxSsa2W4nAlYxhNOzPr4dF/S8iZmrjejd7mVvOMjp4wV3iS"], ["role", "moderator"], ["remember_token", "15da1a9816189c1d718f7263c5015a68f8850c2d"]]
50
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan10@gmail.com"], ["LIMIT", 1]]
51
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 10"], ["age", 86], ["created_at", "2024-06-28 08:03:42.978644"], ["updated_at", "2024-06-28 08:03:42.978644"], ["email", "alan10@gmail.com"], ["encrypted_password", "$2a$12$JvnzyIDhTHYJl3GOUfI6uulKFlyQpGflUNunWxX.xIoUCK/gwYggW"], ["role", "user"], ["remember_token", "481a9cbebcf5eab76581932b81d338c1e6a619f0"]]
52
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn11@gmail.com"], ["LIMIT", 1]]
53
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 11"], ["age", 12], ["created_at", "2024-06-28 08:03:43.253589"], ["updated_at", "2024-06-28 08:03:43.253589"], ["email", "michaeljohn11@gmail.com"], ["encrypted_password", "$2a$12$URTRXPMPa75HIANytH3KueP.hj2eWZUlejJw6iMDGmN6bwPr8TYXe"], ["role", "admin"], ["remember_token", "b1289ab728b3eb9bff4cc989a95c5c4b6e76831a"]]
54
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan12@gmail.com"], ["LIMIT", 1]]
55
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 12"], ["age", 63], ["created_at", "2024-06-28 08:03:43.545345"], ["updated_at", "2024-06-28 08:03:43.545345"], ["email", "stan12@gmail.com"], ["encrypted_password", "$2a$12$jaZH4uooO3k4D5vqfLwPTukVaDW7OtJqmMxLVjmLlPpOShXvTyfdm"], ["role", "admin"], ["remember_token", "13af42725f12834d2c38e596bfd288c49f8080b1"]]
56
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan13@gmail.com"], ["LIMIT", 1]]
57
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 13"], ["age", 3], ["created_at", "2024-06-28 08:03:43.816196"], ["updated_at", "2024-06-28 08:03:43.816196"], ["email", "stan13@gmail.com"], ["encrypted_password", "$2a$12$EmVqIMZEZt8sOmZsDy1z/.3VbZurTl80IbgLOxpO3QupH8hqZjdNa"], ["role", "user"], ["remember_token", "cdaae18be97505754b74a2a46ef1026d0d1c509f"]]
58
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan14@gmail.com"], ["LIMIT", 1]]
59
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 14"], ["age", 10], ["created_at", "2024-06-28 08:03:44.078279"], ["updated_at", "2024-06-28 08:03:44.078279"], ["email", "alan14@gmail.com"], ["encrypted_password", "$2a$12$ux7Ihqn7T7mn.5t8N9iq4ucsj/ChuuNTxlBc2JGrhRF39EEUDTzWq"], ["role", "admin"], ["remember_token", "2df63a9605a890359bc9847006b5b1efefa6a7a6"]]
60
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan15@gmail.com"], ["LIMIT", 1]]
61
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 15"], ["age", 93], ["created_at", "2024-06-28 08:03:44.344505"], ["updated_at", "2024-06-28 08:03:44.344505"], ["email", "alan15@gmail.com"], ["encrypted_password", "$2a$12$n20XAEaeyrFHOAkvSHhdd.ZClLDQpHyaGhMFed836xZN.VhAHRn1q"], ["role", "user"], ["remember_token", "e718ee46a91cc2c17e8d90f9858d3adbd8a6dc75"]]
62
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn16@gmail.com"], ["LIMIT", 1]]
63
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 16"], ["age", 97], ["created_at", "2024-06-28 08:03:44.616071"], ["updated_at", "2024-06-28 08:03:44.616071"], ["email", "michaeljohn16@gmail.com"], ["encrypted_password", "$2a$12$sHDBlWcNwS.r/C9Mv8qUh.WmdDRtTu/1MW9Amd7mL3aRJDR822vYe"], ["role", "admin"], ["remember_token", "5ef7af87d8e4608f9e52ec39aced645de55dd96c"]]
64
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob17@gmail.com"], ["LIMIT", 1]]
65
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 17"], ["age", 93], ["created_at", "2024-06-28 08:03:44.889184"], ["updated_at", "2024-06-28 08:03:44.889184"], ["email", "bob17@gmail.com"], ["encrypted_password", "$2a$12$hLD5VewT6kysW9OQ6R4/tePjz4QoevhRQuoCIZ6rpOY4do68WFWe."], ["role", "admin"], ["remember_token", "b17477689b91866a3ad6138787734c763b91e433"]]
66
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan18@gmail.com"], ["LIMIT", 1]]
67
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 18"], ["age", 73], ["created_at", "2024-06-28 08:03:45.184022"], ["updated_at", "2024-06-28 08:03:45.184022"], ["email", "stan18@gmail.com"], ["encrypted_password", "$2a$12$JSrC6OnyyxxDwwEfLxBfuuEddvVSSA9J8Lowwp2XSzdTKX.JLFQ.a"], ["role", "moderator"], ["remember_token", "4c0cf7c58124af701f9bcfc4851d75fd07639e4f"]]
68
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn19@gmail.com"], ["LIMIT", 1]]
69
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 19"], ["age", 61], ["created_at", "2024-06-28 08:03:45.453422"], ["updated_at", "2024-06-28 08:03:45.453422"], ["email", "michaeljohn19@gmail.com"], ["encrypted_password", "$2a$12$El/uL0wWBbKgkTxnEPajKOed9oHy4ShgBHjjEFHSFpbTbJretBK8."], ["role", "admin"], ["remember_token", "68577338876717b75682f49fdc93c103f37a7994"]]
70
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan20@gmail.com"], ["LIMIT", 1]]
71
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 20"], ["age", 39], ["created_at", "2024-06-28 08:03:45.715836"], ["updated_at", "2024-06-28 08:03:45.715836"], ["email", "stan20@gmail.com"], ["encrypted_password", "$2a$12$p9chJxM07lA4PJ3.KkW0M.LHTpvrTW9QrLXJDVT0IJ1Q6PM9FDn8q"], ["role", "user"], ["remember_token", "838b3a351f58a163320eeeb31a687971a549051b"]]
72
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan21@gmail.com"], ["LIMIT", 1]]
73
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 21"], ["age", 67], ["created_at", "2024-06-28 08:03:45.971025"], ["updated_at", "2024-06-28 08:03:45.971025"], ["email", "stan21@gmail.com"], ["encrypted_password", "$2a$12$RaF5JORMRxf3iLzjNRVYReD5JxjVzGpx2EmB7D2ZGlhpHnzdgIcPy"], ["role", "user"], ["remember_token", "4ad866fd7f7628008ee76cb55140607415aae5d4"]]
74
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris22@gmail.com"], ["LIMIT", 1]]
75
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 22"], ["age", 0], ["created_at", "2024-06-28 08:03:46.230589"], ["updated_at", "2024-06-28 08:03:46.230589"], ["email", "kris22@gmail.com"], ["encrypted_password", "$2a$12$4QntUCwRjDBQjAjN.8gOAeaP7X.jtXw3r3FsbRWzcpA1o/dxN6Oyy"], ["role", "admin"], ["remember_token", "3b8e7ccab76ed7467ac491cb5f54aeed30976688"]]
76
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan23@gmail.com"], ["LIMIT", 1]]
77
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 23"], ["age", 50], ["created_at", "2024-06-28 08:03:46.506259"], ["updated_at", "2024-06-28 08:03:46.506259"], ["email", "alan23@gmail.com"], ["encrypted_password", "$2a$12$9bP2LhY7zQIu/nTPl3Tcm.uQOul0L8Gf.03agCI8H7vGqpH14ozXu"], ["role", "moderator"], ["remember_token", "3dc503b36ecf9e03fb2f268491bbd400c8d247ac"]]
78
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn24@gmail.com"], ["LIMIT", 1]]
79
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 24"], ["age", 93], ["created_at", "2024-06-28 08:03:46.772723"], ["updated_at", "2024-06-28 08:03:46.772723"], ["email", "michaeljohn24@gmail.com"], ["encrypted_password", "$2a$12$h9zREVhVs2wV2xDyE8k1aeR8SXbfqVQjEtPP8GssThLrHOy4fEso."], ["role", "user"], ["remember_token", "e18ae132108c026acd97602dad5ca0f068e63a6a"]]
80
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor25@gmail.com"], ["LIMIT", 1]]
81
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 25"], ["age", 0], ["created_at", "2024-06-28 08:03:47.145632"], ["updated_at", "2024-06-28 08:03:47.145632"], ["email", "igor25@gmail.com"], ["encrypted_password", "$2a$12$HzsRnSMDc1zYN4AmcPMNn.Ms/mg14mZhVlLkY/V93cEKMrZ/vagYy"], ["role", "admin"], ["remember_token", "0be6793c528bd92c988eec21f380fe46c175f976"]]
82
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn26@gmail.com"], ["LIMIT", 1]]
83
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 26"], ["age", 30], ["created_at", "2024-06-28 08:03:47.450177"], ["updated_at", "2024-06-28 08:03:47.450177"], ["email", "michaeljohn26@gmail.com"], ["encrypted_password", "$2a$12$l2HoqRAsz0TEQIHwYmrouu7qSSZUnThpx7SiG/b2qwtDCdVseBCZG"], ["role", "admin"], ["remember_token", "faeaca39524f1f29dbb27a78f93f66a387d371f6"]]
84
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan27@gmail.com"], ["LIMIT", 1]]
85
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 27"], ["age", 83], ["created_at", "2024-06-28 08:03:47.725768"], ["updated_at", "2024-06-28 08:03:47.725768"], ["email", "alan27@gmail.com"], ["encrypted_password", "$2a$12$RqxGFh8FJ61kZNaRlrDnq.5ANT7pAYsRC3Rmmq0RmrKPE2Xaip3de"], ["role", "moderator"], ["remember_token", "1a5ea26af668bd32770e4dc2c27b25a6c94f328b"]]
86
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris28@gmail.com"], ["LIMIT", 1]]
87
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 28"], ["age", 27], ["created_at", "2024-06-28 08:03:47.993840"], ["updated_at", "2024-06-28 08:03:47.993840"], ["email", "kris28@gmail.com"], ["encrypted_password", "$2a$12$7Eq99FXBq17fgNepofGtGuVJCTfOKo7AhbuciwkgqNmTFxisQuM22"], ["role", "user"], ["remember_token", "1cb3fd3737af2f061d428e3869c6607e08ce5e73"]]
88
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn29@gmail.com"], ["LIMIT", 1]]
89
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 29"], ["age", 78], ["created_at", "2024-06-28 08:03:48.266781"], ["updated_at", "2024-06-28 08:03:48.266781"], ["email", "michaeljohn29@gmail.com"], ["encrypted_password", "$2a$12$o64UidSncOX0KplvFoU2DO/0zCoIf8fdnSPi/cAY7Jgr530218GqC"], ["role", "user"], ["remember_token", "6d90f95c36ff42211a613992ed5e2887a488ec11"]]
90
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan30@gmail.com"], ["LIMIT", 1]]
91
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 30"], ["age", 41], ["created_at", "2024-06-28 08:03:48.540647"], ["updated_at", "2024-06-28 08:03:48.540647"], ["email", "stan30@gmail.com"], ["encrypted_password", "$2a$12$Cl0MWDrM3GvgOa1iH2CIS.Nijq1ZnTr0Wg1hMDXbrKh1rvWCXPkdS"], ["role", "moderator"], ["remember_token", "a5c491660931adc51eb746751a073fda788c891d"]]
92
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan31@gmail.com"], ["LIMIT", 1]]
93
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 31"], ["age", 75], ["created_at", "2024-06-28 08:03:48.803432"], ["updated_at", "2024-06-28 08:03:48.803432"], ["email", "stan31@gmail.com"], ["encrypted_password", "$2a$12$DWFfv843ZNfuKuyZtRlBK.7wmcw5NNLcVdq.4xyXsd2ml0B/w/f6m"], ["role", "user"], ["remember_token", "aa57cb2360e53be3f52012ff70efb1e34db42717"]]
94
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan32@gmail.com"], ["LIMIT", 1]]
95
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 32"], ["age", 37], ["created_at", "2024-06-28 08:03:49.072546"], ["updated_at", "2024-06-28 08:03:49.072546"], ["email", "alan32@gmail.com"], ["encrypted_password", "$2a$12$S8483WyRE7bcUiHjrJ2OEeu5BF6l4KQmSui5u8C9HSX8.itTY0Oqm"], ["role", "user"], ["remember_token", "516e636eeccaa662adafa12e292e0e1d6226d608"]]
96
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor33@gmail.com"], ["LIMIT", 1]]
97
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 33"], ["age", 87], ["created_at", "2024-06-28 08:03:49.336584"], ["updated_at", "2024-06-28 08:03:49.336584"], ["email", "igor33@gmail.com"], ["encrypted_password", "$2a$12$1YwGbap4yy5HUXSqTts/9eK6iBUiX4e3G7pTIuC9wU/FAdIBLYA7K"], ["role", "moderator"], ["remember_token", "17e85d403754c7d35498cc2d9e0f39646ca19bd9"]]
98
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris34@gmail.com"], ["LIMIT", 1]]
99
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 34"], ["age", 73], ["created_at", "2024-06-28 08:03:49.600350"], ["updated_at", "2024-06-28 08:03:49.600350"], ["email", "kris34@gmail.com"], ["encrypted_password", "$2a$12$0929mKgfJETiv4DhfnKh5O7ZeSDEkEKSvuXENz/xxxnlj4urBM2s."], ["role", "admin"], ["remember_token", "9f5a0d34ae7bfb5acf29b575a21273b24e335035"]]
100
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan35@gmail.com"], ["LIMIT", 1]]
101
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 35"], ["age", 24], ["created_at", "2024-06-28 08:03:49.862582"], ["updated_at", "2024-06-28 08:03:49.862582"], ["email", "alan35@gmail.com"], ["encrypted_password", "$2a$12$sRrCHcfZkOsdAPLmSmhNE.GOMmTFDRtKTrEo2xzbnWirj6U1um53S"], ["role", "admin"], ["remember_token", "06da2e435dbe0632c7182e238e4e7d3c527a1d88"]]
102
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan36@gmail.com"], ["LIMIT", 1]]
103
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 36"], ["age", 22], ["created_at", "2024-06-28 08:03:50.115348"], ["updated_at", "2024-06-28 08:03:50.115348"], ["email", "alan36@gmail.com"], ["encrypted_password", "$2a$12$eYw/3JwKaAQqXrBPMibqnOS3bU8E.IbkSEyZ69IO5F0l69dBWhYTS"], ["role", "moderator"], ["remember_token", "05590d2b7dc50afb09ca37c04e3eaf5aad4b69b6"]]
104
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob37@gmail.com"], ["LIMIT", 1]]
105
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 37"], ["age", 3], ["created_at", "2024-06-28 08:03:50.377936"], ["updated_at", "2024-06-28 08:03:50.377936"], ["email", "bob37@gmail.com"], ["encrypted_password", "$2a$12$h0RW/TvTWb4TFR0KnTjrBu.S3.txzBlcqkcKWCzIHMaf11hXq8x4a"], ["role", "admin"], ["remember_token", "4c7688bfe5b99c156984413f7366bb00ddfb7f27"]]
106
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor38@gmail.com"], ["LIMIT", 1]]
107
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 38"], ["age", 43], ["created_at", "2024-06-28 08:03:50.657228"], ["updated_at", "2024-06-28 08:03:50.657228"], ["email", "igor38@gmail.com"], ["encrypted_password", "$2a$12$91gIOwEsJQOzzhuWzVKDWuuKr4hDzcALs0HxE/67cWo2SwznS9NHq"], ["role", "admin"], ["remember_token", "07d3816c9eb70999252d9e5dba21da5895f86af9"]]
108
+ User Exists? (1.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan39@gmail.com"], ["LIMIT", 1]]
109
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 39"], ["age", 50], ["created_at", "2024-06-28 08:03:50.989819"], ["updated_at", "2024-06-28 08:03:50.989819"], ["email", "alan39@gmail.com"], ["encrypted_password", "$2a$12$2ebZX8nLieVZTh8XE86TmunX8C4TaTdWbbuEHxkT2POWPBdF0zF4K"], ["role", "user"], ["remember_token", "3a1c2c2e64d345ddf69663575a7a80a6c9a75008"]]
110
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris40@gmail.com"], ["LIMIT", 1]]
111
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 40"], ["age", 16], ["created_at", "2024-06-28 08:03:51.428689"], ["updated_at", "2024-06-28 08:03:51.428689"], ["email", "kris40@gmail.com"], ["encrypted_password", "$2a$12$NQ/Xot9bsbQ9BRPUGm/h2OO2eenyilC5LAY5NWQGqSU90jDwPv2zK"], ["role", "user"], ["remember_token", "cded35684aa4db4ee553752de016d5dc52efa165"]]
112
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob41@gmail.com"], ["LIMIT", 1]]
113
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 41"], ["age", 69], ["created_at", "2024-06-28 08:03:51.733651"], ["updated_at", "2024-06-28 08:03:51.733651"], ["email", "bob41@gmail.com"], ["encrypted_password", "$2a$12$mGKWOYl2jxw6Ipkr99hAOOfuYnQ6KvM12szZcCO8j6ZWja6lW8BBK"], ["role", "moderator"], ["remember_token", "e29eda7e76fde1523651124a9ee03a88527d53de"]]
114
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor42@gmail.com"], ["LIMIT", 1]]
115
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 42"], ["age", 29], ["created_at", "2024-06-28 08:03:52.063189"], ["updated_at", "2024-06-28 08:03:52.063189"], ["email", "igor42@gmail.com"], ["encrypted_password", "$2a$12$BhlKj0GCnzGlA8gxKyL1.u9aKyfo.w7TQqebctlShe.bqFuh2Z7bG"], ["role", "moderator"], ["remember_token", "6ade88bd7015e4b89b42a1b9897e8bc93072abc0"]]
116
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris43@gmail.com"], ["LIMIT", 1]]
117
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 43"], ["age", 99], ["created_at", "2024-06-28 08:03:52.371266"], ["updated_at", "2024-06-28 08:03:52.371266"], ["email", "kris43@gmail.com"], ["encrypted_password", "$2a$12$Lt2xDTgPtxpluIY5nAk9weh3MhMDi50TzLAWspdJKsn2tqXWkk31a"], ["role", "admin"], ["remember_token", "cb9914f8566c4a4165bfbe045bda59217e327064"]]
118
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan44@gmail.com"], ["LIMIT", 1]]
119
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 44"], ["age", 44], ["created_at", "2024-06-28 08:03:52.780625"], ["updated_at", "2024-06-28 08:03:52.780625"], ["email", "stan44@gmail.com"], ["encrypted_password", "$2a$12$dFRTwMWqFEDe2aGzbDhLRucPzN0L1oEJZ9sAH03GmbTlpHIXvE9Gu"], ["role", "moderator"], ["remember_token", "ce0498ddace4b69b4562f50de859aab4ca72ac2a"]]
120
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris45@gmail.com"], ["LIMIT", 1]]
121
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 45"], ["age", 46], ["created_at", "2024-06-28 08:03:53.091157"], ["updated_at", "2024-06-28 08:03:53.091157"], ["email", "kris45@gmail.com"], ["encrypted_password", "$2a$12$aVi0JgSkT7jqjxeKSMcwOuIRyea1JDHDJ5mh3nj7SmYH.KdEP.5Em"], ["role", "user"], ["remember_token", "fab21e88cfb287898db2677d82d5ad10d96a9b3f"]]
122
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan46@gmail.com"], ["LIMIT", 1]]
123
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 46"], ["age", 96], ["created_at", "2024-06-28 08:03:53.377912"], ["updated_at", "2024-06-28 08:03:53.377912"], ["email", "stan46@gmail.com"], ["encrypted_password", "$2a$12$8G6pj.Z4TyYbGMUpERsdee2ZSVMxLhbALBjrG8JnKnJmxO5QJMMMO"], ["role", "user"], ["remember_token", "4a2f6f94da4beab194788941c743f14f5ebac4f9"]]
124
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris47@gmail.com"], ["LIMIT", 1]]
125
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 47"], ["age", 74], ["created_at", "2024-06-28 08:03:53.658241"], ["updated_at", "2024-06-28 08:03:53.658241"], ["email", "kris47@gmail.com"], ["encrypted_password", "$2a$12$2pQQB5fB6Qox5r.K9/Kip.qlZPXE46hZUIV8eK4iVeWfHqbGbQODe"], ["role", "moderator"], ["remember_token", "f2d6c544d11eb5cbd50b02e6186b809236a462da"]]
126
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris48@gmail.com"], ["LIMIT", 1]]
127
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 48"], ["age", 59], ["created_at", "2024-06-28 08:03:53.929085"], ["updated_at", "2024-06-28 08:03:53.929085"], ["email", "kris48@gmail.com"], ["encrypted_password", "$2a$12$M7fi1/wl/LYV1mKH5.JXl.CSi0aQZCEaaoplrtjpFOrdwCVFEorlK"], ["role", "user"], ["remember_token", "258081c6e668faf54acae18d35a3cea6903e889e"]]
128
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan49@gmail.com"], ["LIMIT", 1]]
129
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 49"], ["age", 76], ["created_at", "2024-06-28 08:03:54.201820"], ["updated_at", "2024-06-28 08:03:54.201820"], ["email", "stan49@gmail.com"], ["encrypted_password", "$2a$12$Wwl3XBR9EPbnsS5pk/7/5uTObvFvUsZSgF9YKgmlmLwsSJ2WDqqpm"], ["role", "moderator"], ["remember_token", "0c0f1e96e7f6382e25515cbcaa042991ac01bab5"]]
130
+ User Exists? (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan50@gmail.com"], ["LIMIT", 1]]
131
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 50"], ["age", 38], ["created_at", "2024-06-28 08:03:54.469330"], ["updated_at", "2024-06-28 08:03:54.469330"], ["email", "stan50@gmail.com"], ["encrypted_password", "$2a$12$hivjGwoB.JI1M7K6QqDAVeUCPNz4sx./j/AYBItEUSq.fZf8a/rIu"], ["role", "moderator"], ["remember_token", "2d0245a61da77e620ff2eca261d34fe470b957ce"]]
132
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob51@gmail.com"], ["LIMIT", 1]]
133
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 51"], ["age", 59], ["created_at", "2024-06-28 08:03:54.736199"], ["updated_at", "2024-06-28 08:03:54.736199"], ["email", "bob51@gmail.com"], ["encrypted_password", "$2a$12$/z8qI7eg/tQVKqtJxp601enb/I5i9ud2hRTo9c/Vcwp21HXN2dnbi"], ["role", "moderator"], ["remember_token", "80f4b678caf0db78c17eb5d9cba540945844c146"]]
134
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris52@gmail.com"], ["LIMIT", 1]]
135
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 52"], ["age", 4], ["created_at", "2024-06-28 08:03:55.028409"], ["updated_at", "2024-06-28 08:03:55.028409"], ["email", "kris52@gmail.com"], ["encrypted_password", "$2a$12$HNZBU24vUyxthKdPV2XT3OQw.ZsIjLx./2vu8YHLgUnDQNrSa8p1q"], ["role", "user"], ["remember_token", "535c08448db7ae67113ec4aa6915775878e502ba"]]
136
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn53@gmail.com"], ["LIMIT", 1]]
137
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 53"], ["age", 32], ["created_at", "2024-06-28 08:03:55.314272"], ["updated_at", "2024-06-28 08:03:55.314272"], ["email", "michaeljohn53@gmail.com"], ["encrypted_password", "$2a$12$qfZpLhO5.VD8bmkwELrGZ.5utWQQi3UBfszLnmyaqN/fXY7jtqahy"], ["role", "user"], ["remember_token", "74574d1dcb4392c5a376a1d6277b865191381a02"]]
138
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob54@gmail.com"], ["LIMIT", 1]]
139
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 54"], ["age", 88], ["created_at", "2024-06-28 08:03:55.638117"], ["updated_at", "2024-06-28 08:03:55.638117"], ["email", "bob54@gmail.com"], ["encrypted_password", "$2a$12$fPbVH6gzP33crGOehT/up.FqSjjgSbMWcNVnX5KDSIL7b1O7UFVxC"], ["role", "user"], ["remember_token", "ede297277649b9b1428f00ae06c6cdc5eaca2409"]]
140
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan55@gmail.com"], ["LIMIT", 1]]
141
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 55"], ["age", 51], ["created_at", "2024-06-28 08:03:55.925714"], ["updated_at", "2024-06-28 08:03:55.925714"], ["email", "stan55@gmail.com"], ["encrypted_password", "$2a$12$nS6EnwiKYWm7mpV1A9eYXeP90FwKr2cQLL4.gkSbP1B6yW6WszrwW"], ["role", "admin"], ["remember_token", "16166532b35652951e49de8b150d16b99633d239"]]
142
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn56@gmail.com"], ["LIMIT", 1]]
143
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 56"], ["age", 45], ["created_at", "2024-06-28 08:03:56.204494"], ["updated_at", "2024-06-28 08:03:56.204494"], ["email", "michaeljohn56@gmail.com"], ["encrypted_password", "$2a$12$X5Kn71r0W87Ex0ecjfNuw.7P//MrNuNZfD6tm5qeJw0gwuQWc.XWC"], ["role", "moderator"], ["remember_token", "92a6ad2ecf35b0f20dccd9eafbd54b08568188ad"]]
144
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris57@gmail.com"], ["LIMIT", 1]]
145
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 57"], ["age", 26], ["created_at", "2024-06-28 08:03:56.488183"], ["updated_at", "2024-06-28 08:03:56.488183"], ["email", "kris57@gmail.com"], ["encrypted_password", "$2a$12$qtv2XvGhmJRf.jAW0P9SzuuVBgwtZHKgBTL5M4yPEZaMBvQ2nPItu"], ["role", "moderator"], ["remember_token", "4d9e536aabb4ed78d63836eebabde0e694b1aea1"]]
146
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor58@gmail.com"], ["LIMIT", 1]]
147
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 58"], ["age", 75], ["created_at", "2024-06-28 08:03:56.760878"], ["updated_at", "2024-06-28 08:03:56.760878"], ["email", "igor58@gmail.com"], ["encrypted_password", "$2a$12$wsEGShAKlmCVXreiP9OiU.B8eRyqKR8/djgO0sBZBK6L87ATrFpy2"], ["role", "moderator"], ["remember_token", "12d6e49a5fe0a5c2f934f164917a52408dcf9d10"]]
148
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob59@gmail.com"], ["LIMIT", 1]]
149
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 59"], ["age", 42], ["created_at", "2024-06-28 08:03:57.099281"], ["updated_at", "2024-06-28 08:03:57.099281"], ["email", "bob59@gmail.com"], ["encrypted_password", "$2a$12$2BXyaWJnLuwhkpzTdd0HduTrYHf9gmR5G5pmAqtbM6bo0B46efR5y"], ["role", "moderator"], ["remember_token", "f90651d2ad6034b93d88faf25916f537a17d85b8"]]
150
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan60@gmail.com"], ["LIMIT", 1]]
151
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 60"], ["age", 48], ["created_at", "2024-06-28 08:03:57.353669"], ["updated_at", "2024-06-28 08:03:57.353669"], ["email", "stan60@gmail.com"], ["encrypted_password", "$2a$12$TnkUaK8eQ.0aq..6oQUF7.xJkjRP2FRDnQlysaDrUzWuIi4.595ae"], ["role", "admin"], ["remember_token", "219f3421c35ec67973e21e1c7d6cbfb10f90a09c"]]
152
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor61@gmail.com"], ["LIMIT", 1]]
153
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 61"], ["age", 70], ["created_at", "2024-06-28 08:03:57.610180"], ["updated_at", "2024-06-28 08:03:57.610180"], ["email", "igor61@gmail.com"], ["encrypted_password", "$2a$12$snKhJ2TEAHMsEvwAi4vr/egPyKSNI3LnK29R4L2KiGIstVPTEkNd2"], ["role", "moderator"], ["remember_token", "6b10e15770abbde608713416639701b33a79000a"]]
154
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris62@gmail.com"], ["LIMIT", 1]]
155
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 62"], ["age", 34], ["created_at", "2024-06-28 08:03:57.870776"], ["updated_at", "2024-06-28 08:03:57.870776"], ["email", "kris62@gmail.com"], ["encrypted_password", "$2a$12$xX4.NXqo.JO8XnLwB0sK9.MnAR3yxhH5MAJctoIy4rx74LgXA49Qa"], ["role", "admin"], ["remember_token", "3c7e08ae1d2a4f454598828c75e6fad08f616dcf"]]
156
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris63@gmail.com"], ["LIMIT", 1]]
157
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 63"], ["age", 90], ["created_at", "2024-06-28 08:03:58.132136"], ["updated_at", "2024-06-28 08:03:58.132136"], ["email", "kris63@gmail.com"], ["encrypted_password", "$2a$12$QQ82Y3jPFgYE1F4C7nl2jOWJlySyU7cHHvDxZenUwKckz0zP2pbFu"], ["role", "admin"], ["remember_token", "62b2a35b4e5976009daa55f72a4eb4b6629da2aa"]]
158
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor64@gmail.com"], ["LIMIT", 1]]
159
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 64"], ["age", 94], ["created_at", "2024-06-28 08:03:58.390202"], ["updated_at", "2024-06-28 08:03:58.390202"], ["email", "igor64@gmail.com"], ["encrypted_password", "$2a$12$gw5flnm5iCBLwm7MOi858OQSAoxqPPmmhb3.NGfFxgcDsVazTd1km"], ["role", "moderator"], ["remember_token", "888c388b38341e36131480daf80b43d8600e935d"]]
160
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan65@gmail.com"], ["LIMIT", 1]]
161
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 65"], ["age", 63], ["created_at", "2024-06-28 08:03:58.655723"], ["updated_at", "2024-06-28 08:03:58.655723"], ["email", "stan65@gmail.com"], ["encrypted_password", "$2a$12$hO42icfY0LEED6RR8olRr.A6vhirmZkwZx2CyrtHKQbUua1cUpCOO"], ["role", "user"], ["remember_token", "5d0a9973181701272419ce86cfff2f46e3c8db83"]]
162
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor66@gmail.com"], ["LIMIT", 1]]
163
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 66"], ["age", 0], ["created_at", "2024-06-28 08:03:58.922824"], ["updated_at", "2024-06-28 08:03:58.922824"], ["email", "igor66@gmail.com"], ["encrypted_password", "$2a$12$2OD.ASZKLyn513mWUCPelOicK5xcCM89wD9OAQtK/CwyHpNU.91M6"], ["role", "user"], ["remember_token", "efec14d5ec55c4eabe8ce6d79347fc9a6b83acf6"]]
164
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan67@gmail.com"], ["LIMIT", 1]]
165
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 67"], ["age", 88], ["created_at", "2024-06-28 08:03:59.197530"], ["updated_at", "2024-06-28 08:03:59.197530"], ["email", "stan67@gmail.com"], ["encrypted_password", "$2a$12$jp0hni71T.dnzXr0EhZixeo7AOp1UXkbxXOscyDStxvnPAFyBoRxi"], ["role", "user"], ["remember_token", "8605cae6ff46db5357d097b10e06cce7cbad11b9"]]
166
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor68@gmail.com"], ["LIMIT", 1]]
167
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 68"], ["age", 64], ["created_at", "2024-06-28 08:03:59.472840"], ["updated_at", "2024-06-28 08:03:59.472840"], ["email", "igor68@gmail.com"], ["encrypted_password", "$2a$12$OrBncssgXwCijFDi2nkHku6NvyGg.qJLBrg2ScUDPC1SDckrV2dQC"], ["role", "admin"], ["remember_token", "ab95df0dd9fbdacefbcbdccb303ee3d3d1e0bccd"]]
168
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn69@gmail.com"], ["LIMIT", 1]]
169
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 69"], ["age", 46], ["created_at", "2024-06-28 08:03:59.746330"], ["updated_at", "2024-06-28 08:03:59.746330"], ["email", "michaeljohn69@gmail.com"], ["encrypted_password", "$2a$12$.bfjixsrqalxedXPM10F6.UyLWUQBRNniKgiL5J0.DqezKsvlTYDy"], ["role", "moderator"], ["remember_token", "3c75956b11b9eb8dcc2b1c3fa7a73b627b25e90e"]]
170
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan70@gmail.com"], ["LIMIT", 1]]
171
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 70"], ["age", 62], ["created_at", "2024-06-28 08:04:00.027727"], ["updated_at", "2024-06-28 08:04:00.027727"], ["email", "alan70@gmail.com"], ["encrypted_password", "$2a$12$3aHEg9A.BYdJ9b6InK2UyujfIeI/05kbgYFALWMwuv9OPMPF8yVCS"], ["role", "user"], ["remember_token", "444e009c987d4ef2916a576c4768e256bc3288c1"]]
172
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor71@gmail.com"], ["LIMIT", 1]]
173
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 71"], ["age", 82], ["created_at", "2024-06-28 08:04:00.310540"], ["updated_at", "2024-06-28 08:04:00.310540"], ["email", "igor71@gmail.com"], ["encrypted_password", "$2a$12$sI6I1TUxCEq/vFknrVfJLOs2T7pTojKjZZjAmKcJyvoyOZq/2wiFe"], ["role", "moderator"], ["remember_token", "b2a24cd984b2f4f5e4ffedac36513810799e8f60"]]
174
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob72@gmail.com"], ["LIMIT", 1]]
175
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 72"], ["age", 45], ["created_at", "2024-06-28 08:04:00.580533"], ["updated_at", "2024-06-28 08:04:00.580533"], ["email", "bob72@gmail.com"], ["encrypted_password", "$2a$12$STC2Bc0f7mcazWhZyHXJWukv5l6Re6E5zdWlJI/QqaEguSEhUfcMa"], ["role", "user"], ["remember_token", "2abe98b52fcf189799251b46e503efb8da969a37"]]
176
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan73@gmail.com"], ["LIMIT", 1]]
177
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 73"], ["age", 19], ["created_at", "2024-06-28 08:04:00.851771"], ["updated_at", "2024-06-28 08:04:00.851771"], ["email", "stan73@gmail.com"], ["encrypted_password", "$2a$12$ol18m/z93bI6CGmrOfUC1eaQVgGQr7Fj5pCrXoAC2oRdUoEQ3.msS"], ["role", "admin"], ["remember_token", "e7fba245786b7659b1645318b7f6271b664b6aeb"]]
178
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris74@gmail.com"], ["LIMIT", 1]]
179
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 74"], ["age", 50], ["created_at", "2024-06-28 08:04:01.117794"], ["updated_at", "2024-06-28 08:04:01.117794"], ["email", "kris74@gmail.com"], ["encrypted_password", "$2a$12$l96HexlV3PtlQWq91CYLfuSEt694hI8d5E9t8dDmxRhFBhVlRDKc."], ["role", "moderator"], ["remember_token", "85ca00da290a07a182aa55a7e46977c6f2a4a452"]]
180
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn75@gmail.com"], ["LIMIT", 1]]
181
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 75"], ["age", 2], ["created_at", "2024-06-28 08:04:01.391470"], ["updated_at", "2024-06-28 08:04:01.391470"], ["email", "michaeljohn75@gmail.com"], ["encrypted_password", "$2a$12$xt7JV880Am/dqwd89J78F..ticuwOkAY7LYjTMiVK2b1xLgaxD/VO"], ["role", "admin"], ["remember_token", "6aa3cbb7cb5683dc2a8b0c6196e531e1e28bda6c"]]
182
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn76@gmail.com"], ["LIMIT", 1]]
183
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 76"], ["age", 52], ["created_at", "2024-06-28 08:04:01.657500"], ["updated_at", "2024-06-28 08:04:01.657500"], ["email", "michaeljohn76@gmail.com"], ["encrypted_password", "$2a$12$8Yo6nIo9PUVzmykFXfD.i.l10LHbFjFMN092r6NXP7uswMjORiR0q"], ["role", "user"], ["remember_token", "785250933f2d32978f4e0b1bc6443f37edf88239"]]
184
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan77@gmail.com"], ["LIMIT", 1]]
185
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 77"], ["age", 70], ["created_at", "2024-06-28 08:04:01.922001"], ["updated_at", "2024-06-28 08:04:01.922001"], ["email", "stan77@gmail.com"], ["encrypted_password", "$2a$12$VcdHBVooBo1ur.KcVj4hveR0Ixy0NsH1Le37Qmihr6ZXAUkE6SFKa"], ["role", "user"], ["remember_token", "d14668f6094349da1fe10b0c1a1c0fae237ac51e"]]
186
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor78@gmail.com"], ["LIMIT", 1]]
187
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 78"], ["age", 56], ["created_at", "2024-06-28 08:04:02.180156"], ["updated_at", "2024-06-28 08:04:02.180156"], ["email", "igor78@gmail.com"], ["encrypted_password", "$2a$12$Xy9kKCz5eC..GEuJs3/I5uWBHPYv55g7BpMc.oDPbhd.u9.SbYaQq"], ["role", "moderator"], ["remember_token", "ee90e8f7e38fcbec5dc16f076cb59516a333d54f"]]
188
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor79@gmail.com"], ["LIMIT", 1]]
189
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 79"], ["age", 38], ["created_at", "2024-06-28 08:04:02.446621"], ["updated_at", "2024-06-28 08:04:02.446621"], ["email", "igor79@gmail.com"], ["encrypted_password", "$2a$12$7Ft1iyuCM/Agz/nw3GhA4es3j2dRC4nUU3rbjXDk52uNLoTTUck7q"], ["role", "admin"], ["remember_token", "afc4c6bb6bff4ae03e02c9885a2843d75b48a363"]]
190
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn80@gmail.com"], ["LIMIT", 1]]
191
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 80"], ["age", 45], ["created_at", "2024-06-28 08:04:02.713843"], ["updated_at", "2024-06-28 08:04:02.713843"], ["email", "michaeljohn80@gmail.com"], ["encrypted_password", "$2a$12$P8kyXHTp5y0LSVCjmqE4ourNpxtEhqOqAKUfKG9OSPQj7dMPl.U6q"], ["role", "user"], ["remember_token", "be95fd41d87999322ef82503973361b1389969a8"]]
192
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn81@gmail.com"], ["LIMIT", 1]]
193
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 81"], ["age", 88], ["created_at", "2024-06-28 08:04:03.075152"], ["updated_at", "2024-06-28 08:04:03.075152"], ["email", "michaeljohn81@gmail.com"], ["encrypted_password", "$2a$12$JabqkevjZEmlum2Ofj3esukyp2s4Dl9WAn2qtSupTawdYX1jNH3mm"], ["role", "user"], ["remember_token", "518cd2dd61830af27621d73e43e6c296f075af46"]]
194
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn82@gmail.com"], ["LIMIT", 1]]
195
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 82"], ["age", 8], ["created_at", "2024-06-28 08:04:03.358059"], ["updated_at", "2024-06-28 08:04:03.358059"], ["email", "michaeljohn82@gmail.com"], ["encrypted_password", "$2a$12$86aQeoA8De63s0Y4IBcFY.k1EAU8EwStEyOc2jc77Pqm6oe72MCS6"], ["role", "admin"], ["remember_token", "dfdbb5d01586b8d91d7abc623bf22c4a99f8da00"]]
196
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan83@gmail.com"], ["LIMIT", 1]]
197
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 83"], ["age", 34], ["created_at", "2024-06-28 08:04:03.641902"], ["updated_at", "2024-06-28 08:04:03.641902"], ["email", "alan83@gmail.com"], ["encrypted_password", "$2a$12$58LM65n61hs93K7y4YgqyuLJXhL2hLcTioRMtioYrZ2c7iq75Tu96"], ["role", "admin"], ["remember_token", "ac08ad41e48e4903c302df7d68d1572f28a0b501"]]
198
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob84@gmail.com"], ["LIMIT", 1]]
199
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 84"], ["age", 70], ["created_at", "2024-06-28 08:04:03.925662"], ["updated_at", "2024-06-28 08:04:03.925662"], ["email", "bob84@gmail.com"], ["encrypted_password", "$2a$12$BoG9qwDXXFFTwaUVCjJkpetZxboOS0AOqRhaK2RzQMFdMn.Tm.s8a"], ["role", "admin"], ["remember_token", "ea58ba3753811f2888d571ac64d47e08b96107e3"]]
200
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan85@gmail.com"], ["LIMIT", 1]]
201
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 85"], ["age", 74], ["created_at", "2024-06-28 08:04:04.198316"], ["updated_at", "2024-06-28 08:04:04.198316"], ["email", "alan85@gmail.com"], ["encrypted_password", "$2a$12$86PJzp/ySgexFJMoZIptI.hgkEBViawm0ZxwH/IjYfIP/vk.Cxlum"], ["role", "user"], ["remember_token", "25002d6894f70caff2fd47b055a84d9caac5fbca"]]
202
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn86@gmail.com"], ["LIMIT", 1]]
203
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 86"], ["age", 13], ["created_at", "2024-06-28 08:04:04.473992"], ["updated_at", "2024-06-28 08:04:04.473992"], ["email", "michaeljohn86@gmail.com"], ["encrypted_password", "$2a$12$HYhtJCoxd9qvf7.hwhQzbuT3MpZbqjxb2UBEtdiQPwsfNbmDG.xey"], ["role", "user"], ["remember_token", "34a3e2a54c931a3c4a0a0740c227327c6bd76f0c"]]
204
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor87@gmail.com"], ["LIMIT", 1]]
205
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 87"], ["age", 10], ["created_at", "2024-06-28 08:04:04.746327"], ["updated_at", "2024-06-28 08:04:04.746327"], ["email", "igor87@gmail.com"], ["encrypted_password", "$2a$12$Pkoa4EzAiYZIKs7LAUf6cuSaGNRc6/X5JnXskGo2aFplLv9J4qxba"], ["role", "user"], ["remember_token", "3ed9977a7ea77571c6facec943c3113aa772cd35"]]
206
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris88@gmail.com"], ["LIMIT", 1]]
207
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 88"], ["age", 60], ["created_at", "2024-06-28 08:04:05.011234"], ["updated_at", "2024-06-28 08:04:05.011234"], ["email", "kris88@gmail.com"], ["encrypted_password", "$2a$12$TBzYEFd9O35bDlJKpPZjlunb9/DBfy5LUbD17BnJ8I4HRa.pbLttS"], ["role", "moderator"], ["remember_token", "91768b73deebfe92f40472d89d62e14659a21799"]]
208
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan89@gmail.com"], ["LIMIT", 1]]
209
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 89"], ["age", 81], ["created_at", "2024-06-28 08:04:05.278491"], ["updated_at", "2024-06-28 08:04:05.278491"], ["email", "stan89@gmail.com"], ["encrypted_password", "$2a$12$xJQBBy9BHIl/5LICgl1CIufDnwK4J9KhDtA/tOMdZD6yTgWzaxfjG"], ["role", "moderator"], ["remember_token", "0f9f99502d84ca2b9aacb18ea7a869b81b059ca8"]]
210
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan90@gmail.com"], ["LIMIT", 1]]
211
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 90"], ["age", 63], ["created_at", "2024-06-28 08:04:05.547266"], ["updated_at", "2024-06-28 08:04:05.547266"], ["email", "stan90@gmail.com"], ["encrypted_password", "$2a$12$g2lmARImXIwLJDRnGS6q3eMX9iNNH4cLmMRSBqZqOJGeEkG352sAy"], ["role", "user"], ["remember_token", "908675fc654d6fed0a2f8ace57ace38a4070483d"]]
212
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob91@gmail.com"], ["LIMIT", 1]]
213
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 91"], ["age", 49], ["created_at", "2024-06-28 08:04:05.808378"], ["updated_at", "2024-06-28 08:04:05.808378"], ["email", "bob91@gmail.com"], ["encrypted_password", "$2a$12$dRDBgcKYUa2v88AeOx0jje0KdMa4aq5KVe2p1Qc4xYh9hoAtjyTTK"], ["role", "admin"], ["remember_token", "24077bfc4fb1cd74d31a515849f190c60303c971"]]
214
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob92@gmail.com"], ["LIMIT", 1]]
215
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 92"], ["age", 91], ["created_at", "2024-06-28 08:04:06.087367"], ["updated_at", "2024-06-28 08:04:06.087367"], ["email", "bob92@gmail.com"], ["encrypted_password", "$2a$12$R4Yg3NVMlv96DNggkjByuOXL2.4cUYSyA8nUpbxeKsa7Gh26bTMI2"], ["role", "user"], ["remember_token", "755a6d1d784111edbdce6580177463b2801db9b6"]]
216
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan93@gmail.com"], ["LIMIT", 1]]
217
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 93"], ["age", 88], ["created_at", "2024-06-28 08:04:06.457830"], ["updated_at", "2024-06-28 08:04:06.457830"], ["email", "alan93@gmail.com"], ["encrypted_password", "$2a$12$j4ofOTpI8oaK6NPmXDhgX.A/unnKlJZ9krRKdH5h4.XyVD9K/9JhW"], ["role", "admin"], ["remember_token", "e3c5402519236082f31f1dda42881920f5f70e0c"]]
218
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan94@gmail.com"], ["LIMIT", 1]]
219
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 94"], ["age", 53], ["created_at", "2024-06-28 08:04:06.734881"], ["updated_at", "2024-06-28 08:04:06.734881"], ["email", "stan94@gmail.com"], ["encrypted_password", "$2a$12$VJL4AdT.h9zaSyNYfSWi2eUhW7vc.RkHyWciu1icu4xwxIOBSxXKm"], ["role", "moderator"], ["remember_token", "ee675b56ad80af3a1d891829c8076ea38db9c71b"]]
220
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob95@gmail.com"], ["LIMIT", 1]]
221
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 95"], ["age", 67], ["created_at", "2024-06-28 08:04:07.004874"], ["updated_at", "2024-06-28 08:04:07.004874"], ["email", "bob95@gmail.com"], ["encrypted_password", "$2a$12$6acOEUEO3XSJuW9O6yrn6e6LV1gDmr6Wk644dpr3FOjf3CqHTciTS"], ["role", "moderator"], ["remember_token", "93c9dc892041308757837b52c6411d82db3614cb"]]
222
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris96@gmail.com"], ["LIMIT", 1]]
223
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 96"], ["age", 74], ["created_at", "2024-06-28 08:04:07.270285"], ["updated_at", "2024-06-28 08:04:07.270285"], ["email", "kris96@gmail.com"], ["encrypted_password", "$2a$12$vv0FL/ZN1xU8fFHD/YFCiel7lBS/NhETM3EhjpRG67Db4m3gK/mJG"], ["role", "moderator"], ["remember_token", "0b0cc69857e95b81a9dcd882beed5469e515a30e"]]
224
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor97@gmail.com"], ["LIMIT", 1]]
225
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 97"], ["age", 70], ["created_at", "2024-06-28 08:04:07.527974"], ["updated_at", "2024-06-28 08:04:07.527974"], ["email", "igor97@gmail.com"], ["encrypted_password", "$2a$12$Xa.xc68OxEKmaeSD/7JnWO9X1kZ1rkfKbZkuockruC8Z0KFShWWaC"], ["role", "moderator"], ["remember_token", "09c0910843094c0c482e640674976d800bdd01af"]]
226
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob98@gmail.com"], ["LIMIT", 1]]
227
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 98"], ["age", 15], ["created_at", "2024-06-28 08:04:07.785639"], ["updated_at", "2024-06-28 08:04:07.785639"], ["email", "bob98@gmail.com"], ["encrypted_password", "$2a$12$YBE1EbRti/SBsRO8t8WR3ucV80X7zmBzOPvO8g/UlT0OIikNtTaZC"], ["role", "moderator"], ["remember_token", "a9fe29f5ba4cbbd7d88ebde11f7a75626189fce5"]]
228
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn99@gmail.com"], ["LIMIT", 1]]
229
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 99"], ["age", 82], ["created_at", "2024-06-28 08:04:08.042928"], ["updated_at", "2024-06-28 08:04:08.042928"], ["email", "michaeljohn99@gmail.com"], ["encrypted_password", "$2a$12$A0KEIpm7CUmxW59v7gHvJe5za4R0a3RjeqSOIw1I6JBFpB0ZYt18C"], ["role", "admin"], ["remember_token", "e632f18e55fc30c04efc8857b74dd98b3412eb26"]]
230
+ ActiveRecord::SchemaMigration Create (2.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150909210357"]]
231
+ TRANSACTION (1.4ms) commit transaction
232
+ Migrating to ChangeUsers (20150928123254)
233
+ TRANSACTION (0.0ms) begin transaction
234
+  (0.6ms) ALTER TABLE "users" ADD "login" varchar
235
+  (0.2ms) ALTER TABLE "users" ADD "crypted_password" varchar
236
+  (0.2ms) ALTER TABLE "users" ADD "password_salt" varchar
237
+  (0.2ms) ALTER TABLE "users" ADD "persistence_token" varchar
238
+  (0.2ms) ALTER TABLE "users" ADD "login_count" integer
239
+  (0.4ms) ALTER TABLE "users" ADD "failed_login_count" integer
240
+  (0.2ms) ALTER TABLE "users" ADD "last_request_at" datetime
241
+  (0.2ms) ALTER TABLE "users" ADD "current_login_at" datetime
242
+  (0.2ms) ALTER TABLE "users" ADD "last_login_at" datetime
243
+  (0.2ms) ALTER TABLE "users" ADD "current_login_ip" varchar
244
+  (0.3ms) ALTER TABLE "users" ADD "last_login_ip" varchar
245
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150928123254"]]
246
+ TRANSACTION (0.8ms) commit transaction
247
+ Migrating to AddClearanceToUsers (20151007170422)
248
+ TRANSACTION (0.0ms) begin transaction
249
+  (0.5ms) ALTER TABLE "users" ADD "confirmation_token" varchar(128)
250
+  (0.2ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
251
+  (0.1ms) SELECT id FROM users WHERE remember_token IS NULL
252
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151007170422"]]
253
+ TRANSACTION (0.7ms) commit transaction
254
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
255
+ TRANSACTION (0.0ms) begin transaction
256
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2024-06-28 08:04:08.076708"], ["updated_at", "2024-06-28 08:04:08.076708"]]
257
+ TRANSACTION (0.8ms) commit transaction
258
+  (0.0ms) SELECT sqlite_version(*)
259
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
260
+  (1.3ms) SELECT sqlite_version(*)
261
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
262
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
263
+  (0.0ms) SELECT sqlite_version(*)
264
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
265
+ Started GET "/" for ::1 at 2024-06-28 11:35:49 +0300
266
+  (1.3ms) SELECT sqlite_version(*)
267
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
268
+ Processing by HomeController#index as HTML
269
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "da76a6aeeec3353697dbd2676806df6c7189788c"], ["LIMIT", 1]]
270
+ ↳ app/controllers/application_controller.rb:11:in `log_user'
271
+ ==> No USER
272
+ Rendering layout layouts/application.html.erb
273
+ Rendering home/index.html.erb within layouts/application
274
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "da76a6aeeec3353697dbd2676806df6c7189788c"], ["LIMIT", 1]]
275
+ ↳ app/views/home/index.html.erb:1
276
+ Rendered home/index.html.erb within layouts/application (Duration: 4.8ms | Allocations: 1832)
277
+ Rendered shared/_header.html.erb (Duration: 0.5ms | Allocations: 115)
278
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "da76a6aeeec3353697dbd2676806df6c7189788c"], ["LIMIT", 1]]
279
+ ↳ app/views/shared/_footer.html.erb:8
280
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.3ms | Allocations: 120)
281
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.3ms | Allocations: 172)
282
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.4ms | Allocations: 134)
283
+ User Load (0.6ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
284
+ ↳ app/views/shared/_footer.html.erb:14
285
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "da76a6aeeec3353697dbd2676806df6c7189788c"], ["LIMIT", 1]]
286
+ ↳ app/views/shared/_footer.html.erb:14
287
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 71.9ms | Allocations: 72189)
288
+ Rendered shared/_footer.html.erb (Duration: 74.6ms | Allocations: 73658)
289
+ Rendered layout layouts/application.html.erb (Duration: 86.7ms | Allocations: 76698)
290
+ Completed 200 OK in 105ms (Views: 90.7ms | ActiveRecord: 1.7ms | Allocations: 85011)
291
+
292
+
293
+ Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:35:53 +0300
294
+ Processing by AnyLogin::ApplicationController#any_login as HTML
295
+ Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"8"}
296
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]]
297
+ Redirected to http://localhost:3000/
298
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 2608)
299
+
300
+
301
+ Started GET "/" for ::1 at 2024-06-28 11:35:53 +0300
302
+ Processing by HomeController#index as HTML
303
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "eb5d46957df4f37be6aaf89052e52e83d44212c7"], ["LIMIT", 1]]
304
+ ↳ app/controllers/application_controller.rb:11:in `log_user'
305
+ ==> bob7@gmail.com
306
+ Rendering layout layouts/application.html.erb
307
+ Rendering home/index.html.erb within layouts/application
308
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 63)
309
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
310
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
311
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
312
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
313
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
314
+ ↳ app/views/shared/_footer.html.erb:14
315
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 8], ["LIMIT", 1]]
316
+ ↳ app/views/shared/_footer.html.erb:14
317
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 4.2ms | Allocations: 2898)
318
+ Rendered shared/_footer.html.erb (Duration: 4.6ms | Allocations: 3078)
319
+ Rendered layout layouts/application.html.erb (Duration: 6.3ms | Allocations: 3557)
320
+ Completed 200 OK in 11ms (Views: 6.8ms | ActiveRecord: 0.9ms | Allocations: 5055)
321
+
322
+
323
+ Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:35:56 +0300
324
+ Processing by AnyLogin::ApplicationController#any_login as HTML
325
+ Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"1", "id"=>"", "back_to_previous_id"=>""}
326
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
327
+ Redirected to http://localhost:3000/
328
+ Completed 302 Found in 3ms (ActiveRecord: 0.1ms | Allocations: 1758)
329
+
330
+
331
+ Started GET "/" for ::1 at 2024-06-28 11:35:56 +0300
332
+ Processing by HomeController#index as HTML
333
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "3c6c3346c4af61da66eec05f73fa46ce223729d9"], ["LIMIT", 1]]
334
+ ↳ app/controllers/application_controller.rb:11:in `log_user'
335
+ ==> michaeljohn0@gmail.com
336
+ Rendering layout layouts/application.html.erb
337
+ Rendering home/index.html.erb within layouts/application
338
+ Rendered home/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 41)
339
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
340
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
341
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
342
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
343
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
344
+ ↳ app/views/shared/_footer.html.erb:14
345
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
346
+ ↳ app/views/shared/_footer.html.erb:14
347
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 8], ["LIMIT", 1]]
348
+ ↳ app/views/shared/_footer.html.erb:14
349
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 4.5ms | Allocations: 3535)
350
+ Rendered shared/_footer.html.erb (Duration: 4.9ms | Allocations: 3700)
351
+ Rendered layout layouts/application.html.erb (Duration: 5.7ms | Allocations: 4148)
352
+ Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.4ms | Allocations: 5591)
353
+
354
+
355
+ Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:36:03 +0300
356
+ Processing by AnyLogin::ApplicationController#any_login as HTML
357
+ Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"10", "id"=>"", "back_to_previous_id"=>""}
358
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
359
+ Redirected to http://localhost:3000/
360
+ Completed 302 Found in 3ms (ActiveRecord: 0.1ms | Allocations: 1745)
361
+
362
+
363
+ Started GET "/" for ::1 at 2024-06-28 11:36:03 +0300
364
+ Processing by HomeController#index as HTML
365
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "15da1a9816189c1d718f7263c5015a68f8850c2d"], ["LIMIT", 1]]
366
+ ↳ app/controllers/application_controller.rb:11:in `log_user'
367
+ ==> michaeljohn9@gmail.com
368
+ Rendering layout layouts/application.html.erb
369
+ Rendering home/index.html.erb within layouts/application
370
+ Rendered home/index.html.erb within layouts/application (Duration: 0.1ms | Allocations: 41)
371
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
372
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
373
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
374
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
375
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
376
+ ↳ app/views/shared/_footer.html.erb:14
377
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
378
+ ↳ app/views/shared/_footer.html.erb:14
379
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
380
+ ↳ app/views/shared/_footer.html.erb:14
381
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 8], ["LIMIT", 1]]
382
+ ↳ app/views/shared/_footer.html.erb:14
383
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.2ms | Allocations: 4353)
384
+ Rendered shared/_footer.html.erb (Duration: 6.5ms | Allocations: 4518)
385
+ Rendered layout layouts/application.html.erb (Duration: 7.3ms | Allocations: 4966)
386
+ Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.5ms | Allocations: 6413)
387
+
388
+