any_login 1.6.0 → 1.7.0

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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/app/views/any_login/assets/_css.html.erb +1 -1
  3. data/app/views/any_login/assets/_js.html.erb +1 -1
  4. data/lib/any_login/version.rb +1 -1
  5. data/test/rails_apps/authlogic/db/development.sqlite3 +0 -0
  6. data/test/rails_apps/authlogic/db/schema.rb +3 -5
  7. data/test/rails_apps/authlogic/db/test.sqlite3 +0 -0
  8. data/test/rails_apps/authlogic/log/development.log +285 -392
  9. data/test/rails_apps/authlogic/log/test.log +304 -1039
  10. data/test/rails_apps/authlogic/tmp/local_secret.txt +1 -1
  11. data/test/rails_apps/clearance/db/development.sqlite3 +0 -0
  12. data/test/rails_apps/clearance/db/schema.rb +10 -12
  13. data/test/rails_apps/clearance/db/test.sqlite3 +0 -0
  14. data/test/rails_apps/clearance/log/development.log +23 -386
  15. data/test/rails_apps/clearance/log/test.log +598 -964
  16. data/test/rails_apps/clearance/tmp/local_secret.txt +1 -1
  17. data/test/rails_apps/devise/db/development.sqlite3 +0 -0
  18. data/test/rails_apps/devise/db/schema.rb +7 -9
  19. data/test/rails_apps/devise/db/test.sqlite3 +0 -0
  20. data/test/rails_apps/devise/log/development.log +487 -970
  21. data/test/rails_apps/devise/log/test.log +577 -1937
  22. data/test/rails_apps/devise/tmp/local_secret.txt +1 -1
  23. data/test/rails_apps/sorcery/db/development.sqlite3 +0 -0
  24. data/test/rails_apps/sorcery/db/schema.rb +3 -5
  25. data/test/rails_apps/sorcery/db/test.sqlite3 +0 -0
  26. data/test/rails_apps/sorcery/log/development.log +24 -247
  27. data/test/rails_apps/sorcery/log/test.log +89 -508
  28. data/test/rails_apps/sorcery/tmp/local_secret.txt +1 -1
  29. metadata +17 -30
  30. data/test/rails_apps/authlogic/db/test.sqlite3-shm +0 -0
  31. data/test/rails_apps/authlogic/db/test.sqlite3-wal +0 -0
  32. data/test/rails_apps/authlogic/tmp/development_secret.txt +0 -1
  33. data/test/rails_apps/clearance/db/test.sqlite3-shm +0 -0
  34. data/test/rails_apps/clearance/db/test.sqlite3-wal +0 -0
  35. data/test/rails_apps/clearance/tmp/development_secret.txt +0 -1
  36. data/test/rails_apps/devise/db/test.sqlite3-shm +0 -0
  37. data/test/rails_apps/devise/db/test.sqlite3-wal +0 -0
  38. data/test/rails_apps/devise/tmp/development_secret.txt +0 -1
  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/tmp/development_secret.txt +0 -1
@@ -1 +1 @@
1
- c94fb91b3e24d5c70876cad5679386c55c4fe93774f10e0693a91b85bd53ea5269d8a2a78d3aba94c4834e9c2a282466d5d83a928d8e1eea35c4ecafb62077b1
1
+ 018b45206baf4e07b1f1da80c587fdf6dcdf11f97797f527cd9b948acffece79130012ebefb54bb9486ff04bc7af1899f1cd8962b1b4160e27c68c756e5466dd
@@ -10,13 +10,12 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 2022_08_27_040518) do
14
-
13
+ ActiveRecord::Schema[8.0].define(version: 2022_08_27_040518) do
15
14
  create_table "users", force: :cascade do |t|
16
15
  t.string "name"
17
16
  t.integer "age"
18
- t.datetime "created_at", precision: 6, null: false
19
- t.datetime "updated_at", precision: 6, null: false
17
+ t.datetime "created_at", null: false
18
+ t.datetime "updated_at", null: false
20
19
  t.string "email", default: "", null: false
21
20
  t.string "encrypted_password", default: "", null: false
22
21
  t.string "reset_password_token"
@@ -33,5 +32,4 @@ ActiveRecord::Schema.define(version: 2022_08_27_040518) do
33
32
  t.index ["email"], name: "index_users_on_email", unique: true
34
33
  t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
35
34
  end
36
-
37
35
  end
@@ -1,247 +1,24 @@
1
-  (1.3ms) SELECT sqlite_version(*)
2
-  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
-  (1.4ms) 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.5ms) 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.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150907190739"]]
9
- TRANSACTION (1.0ms) 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.2ms) ALTER TABLE "users" ADD "reset_password_token" varchar
15
-  (0.2ms) 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 AddRoleToUsers (20150909210357)
27
- TRANSACTION (0.0ms) begin transaction
28
-  (0.4ms) ALTER TABLE "users" ADD "role" varchar
29
- ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150909210357"]]
30
- TRANSACTION (0.7ms) commit transaction
31
- Migrating to SorceryCore (20151019154558)
32
- TRANSACTION (0.0ms) begin transaction
33
-  (0.4ms) ALTER TABLE "users" ADD "crypted_password" varchar
34
-  (0.2ms) ALTER TABLE "users" ADD "salt" varchar
35
- ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151019154558"]]
36
- TRANSACTION (0.8ms) commit transaction
37
- Migrating to PopulateTestUsers (20220827040518)
38
- TRANSACTION (0.1ms) begin transaction
39
- User Create (0.5ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 0"], ["age", 3], ["created_at", "2024-06-28 08:04:12.672034"], ["updated_at", "2024-06-28 08:04:12.672034"], ["email", "stan0@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$fVmXD1y3uYnL7/QcxWr1gu3CPD65fUlCjOWIy0ZjsIQuW/RHO6k8e"], ["salt", "o_rVWjGYdUNS9g2Du5DP"]]
40
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 1"], ["age", 18], ["created_at", "2024-06-28 08:04:12.738672"], ["updated_at", "2024-06-28 08:04:12.738672"], ["email", "kris1@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$S6KgT/hEsx0wn4pt96FyneJdvRY7TpGFg1mxNcnnfTiiWIGPX7gZm"], ["salt", "Zg1-xy1D4yRt46oTgkmr"]]
41
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 2"], ["age", 8], ["created_at", "2024-06-28 08:04:12.802969"], ["updated_at", "2024-06-28 08:04:12.802969"], ["email", "kris2@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$gUO5x98grOPEQhHarfqDmOdvjKh/43KSgnnWu7pEAS/M/l6ooj8ZS"], ["salt", "rWc-Ug71EbuadMgxnquy"]]
42
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 3"], ["age", 26], ["created_at", "2024-06-28 08:04:12.867722"], ["updated_at", "2024-06-28 08:04:12.867722"], ["email", "stan3@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$m4/ce9Rs8p/uytjqTyaGb.FNFcXfu7UWhez6MtC8GK1MvYoKGx8eG"], ["salt", "p5ARs2nd6iSSP8hWAwLP"]]
43
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 4"], ["age", 28], ["created_at", "2024-06-28 08:04:12.931807"], ["updated_at", "2024-06-28 08:04:12.931807"], ["email", "igor4@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$zBgRMLPAhKLM9UBDcZRqK.nTvc2aiZOfSJJ8az1evBdM7bRc8lbom"], ["salt", "Akq4W3mN4FVjNyf6Nm3z"]]
44
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 5"], ["age", 94], ["created_at", "2024-06-28 08:04:12.996525"], ["updated_at", "2024-06-28 08:04:12.996525"], ["email", "michaeljohn5@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$l/su.nBy8Wt8yCDZfUJsbOywhpq8wRBgpkhzQjCZBJyxAxpm5L1wK"], ["salt", "GVVXauu-h2VXkGJxLcsp"]]
45
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 6"], ["age", 32], ["created_at", "2024-06-28 08:04:13.060713"], ["updated_at", "2024-06-28 08:04:13.060713"], ["email", "alan6@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$dveBhUj1Xx66NP69ecplCu2g68qo.zKX2jLgaTNbQXm8czWoJcSei"], ["salt", "9x9q2Wu5Uij6rCCYqLmV"]]
46
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 7"], ["age", 48], ["created_at", "2024-06-28 08:04:13.125092"], ["updated_at", "2024-06-28 08:04:13.125092"], ["email", "bob7@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$5O74YgL54nyOMZq5YxlmA.fhos.dYTlnvEn5OHgTVXHhIfCZcbWSu"], ["salt", "DKnLbDvYPcJkUCrLNZZQ"]]
47
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 8"], ["age", 68], ["created_at", "2024-06-28 08:04:13.189825"], ["updated_at", "2024-06-28 08:04:13.189825"], ["email", "michaeljohn8@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$/p/b0iTvWshAXPCHDd1c..tKDKb3LSZCCO2PxwkUHDrSOWcymtSia"], ["salt", "JjQvaTrW5eRJ5Lkxr5Gc"]]
48
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 9"], ["age", 2], ["created_at", "2024-06-28 08:04:13.254620"], ["updated_at", "2024-06-28 08:04:13.254620"], ["email", "igor9@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$zvSYWr64xok7q1bn/SmMlOfkZGHFiAYjQwv37iap9bwyvzj6zOkrO"], ["salt", "izpmp-e1Kb9uzK8ed61s"]]
49
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 10"], ["age", 57], ["created_at", "2024-06-28 08:04:13.319018"], ["updated_at", "2024-06-28 08:04:13.319018"], ["email", "bob10@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$j4ssKaUG8RqfPrrgxngQOe3DlRv/KzFtG/k.H/Lxv./KjXAPGS93."], ["salt", "F5szWkUFiZLBHs-vzYvt"]]
50
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 11"], ["age", 28], ["created_at", "2024-06-28 08:04:13.383274"], ["updated_at", "2024-06-28 08:04:13.383274"], ["email", "alan11@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$M0ieiCoNkMyQ2UHXaVpWaucnvvz/uCbFfdj3CaLacUd2SorHCgYe6"], ["salt", "wHs5xq3CmxxiKNaKbr4h"]]
51
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 12"], ["age", 88], ["created_at", "2024-06-28 08:04:13.449912"], ["updated_at", "2024-06-28 08:04:13.449912"], ["email", "bob12@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$1YuksUaX1zlG6c94hN3.A.VWPQlyVCzK8kNRKlK3XKIc.WI1Q1Usi"], ["salt", "pXCMz6h3x9FRoWGus-xd"]]
52
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 13"], ["age", 23], ["created_at", "2024-06-28 08:04:13.514651"], ["updated_at", "2024-06-28 08:04:13.514651"], ["email", "igor13@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$SAxa96vMaZsrdiunpVgvLOncKPNxbItTRPxM.TBErkIzNBj.349Su"], ["salt", "_nDj75C8pDYxU-zEhxQG"]]
53
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 14"], ["age", 38], ["created_at", "2024-06-28 08:04:13.579643"], ["updated_at", "2024-06-28 08:04:13.579643"], ["email", "alan14@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$dFSyhwwimRwqInyHiPjZ2ONhPSEhisqS69TdCijOyiibasvbt.31O"], ["salt", "d9hVss4j93xspgx6_FsB"]]
54
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 15"], ["age", 96], ["created_at", "2024-06-28 08:04:13.643929"], ["updated_at", "2024-06-28 08:04:13.643929"], ["email", "bob15@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$2L79wXO0Px5DmTMCC5fC6ehdDGkK9KtUS7U.PSZldimHZ1YdX1/li"], ["salt", "DXzzBcsmNCh_ShpzxJSg"]]
55
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 16"], ["age", 5], ["created_at", "2024-06-28 08:04:13.708883"], ["updated_at", "2024-06-28 08:04:13.708883"], ["email", "alan16@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$ukYyoyRwJrZw93zpzQJLz.lwij6L0ZJZ5FXSvLQhu2hXHUC5e8fz6"], ["salt", "Lx_v6jLAz8opj_7hUa7-"]]
56
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 17"], ["age", 38], ["created_at", "2024-06-28 08:04:13.773254"], ["updated_at", "2024-06-28 08:04:13.773254"], ["email", "stan17@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$h7DksM0t.Nl5KrCZIyC35OwwNNDq8XlJVlsm/TA4lrRv8y7AFHarK"], ["salt", "dwiHYx4pXmi6SHNxihsZ"]]
57
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 18"], ["age", 99], ["created_at", "2024-06-28 08:04:13.837005"], ["updated_at", "2024-06-28 08:04:13.837005"], ["email", "stan18@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$UIOEzc6gWzyEp1IeqZeRgObc0UlKG/dPDEN7LtP8uU.pVvhbY9ham"], ["salt", "fNSKtFQa1STV5_LPdfhX"]]
58
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 19"], ["age", 59], ["created_at", "2024-06-28 08:04:13.901155"], ["updated_at", "2024-06-28 08:04:13.901155"], ["email", "kris19@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$.U1GY.Xd4en/ps5QAmxrceMyDrYvEruBl0O5JnAkGPcZZdCDA7Z.C"], ["salt", "NvZkpGBgfXg2Q9L8L6d4"]]
59
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 20"], ["age", 97], ["created_at", "2024-06-28 08:04:13.965761"], ["updated_at", "2024-06-28 08:04:13.965761"], ["email", "kris20@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$W.YhPpt842iEiMKYZbko0.gcOVZUakfCJNOP3EH6NP3e.0P19i5HO"], ["salt", "ztAaokF-8njVN3vodCXw"]]
60
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 21"], ["age", 90], ["created_at", "2024-06-28 08:04:14.030184"], ["updated_at", "2024-06-28 08:04:14.030184"], ["email", "kris21@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$k2KCo7M/QwI0QW51FotN0OCJJA8FiXai83egDPc6wTPdRWNu9phfu"], ["salt", "otgQzyVi3ZqkZwYSnxJp"]]
61
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 22"], ["age", 92], ["created_at", "2024-06-28 08:04:14.094311"], ["updated_at", "2024-06-28 08:04:14.094311"], ["email", "bob22@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$4fTuBwCRYMFCjshtsbe6Ruo.KqL5kj94kKNj9fyKYt8uXEagWBgy."], ["salt", "f6Ay-AEqcVCazAZn-61T"]]
62
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 23"], ["age", 94], ["created_at", "2024-06-28 08:04:14.158848"], ["updated_at", "2024-06-28 08:04:14.158848"], ["email", "bob23@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$BwkN5L5sHppfLvwlK0AdPOjoWOWjtIWT2AoHXeIO9tokd3RQi7yay"], ["salt", "1kTwymtnzuTtQdhgRN1W"]]
63
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 24"], ["age", 62], ["created_at", "2024-06-28 08:04:14.224395"], ["updated_at", "2024-06-28 08:04:14.224395"], ["email", "michaeljohn24@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$s9flayTfkjbvtjimPGCB4eIPgd8PAZGMwQSM0unKeZPRQR/zpdIQu"], ["salt", "H5VDo12L7zWAekTx3Jrz"]]
64
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 25"], ["age", 98], ["created_at", "2024-06-28 08:04:14.288252"], ["updated_at", "2024-06-28 08:04:14.288252"], ["email", "stan25@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$20/BEQIDigDTKu5LT3S3pe3q4mRGJyhvqi4xM5ZivkypupEu1VY2."], ["salt", "-_mJj9rBmvMe9bBHfNms"]]
65
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 26"], ["age", 24], ["created_at", "2024-06-28 08:04:14.352696"], ["updated_at", "2024-06-28 08:04:14.352696"], ["email", "stan26@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$M.sjIN5pLrO2x5XJUue6buTBIyf8FGF5A8BkHn6HJ7A92zPbmr8Ce"], ["salt", "syE4qcnuxpW1mHGj9xEh"]]
66
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 27"], ["age", 31], ["created_at", "2024-06-28 08:04:14.416602"], ["updated_at", "2024-06-28 08:04:14.416602"], ["email", "bob27@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$VO05b/mQVZsG06S1PsmmPO2qY9H7MRS0RyJn.6vRZVx22NzMlhQru"], ["salt", "oR6KzvfxeAz6ZPpj-4Qr"]]
67
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 28"], ["age", 41], ["created_at", "2024-06-28 08:04:14.482932"], ["updated_at", "2024-06-28 08:04:14.482932"], ["email", "stan28@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$DNlcdJjZekkdsAGDWZLNvuSlU7.2RACyzUCfM2jkOH.0yasM7TyZi"], ["salt", "rkKMooCYUzeawVvHsY-E"]]
68
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 29"], ["age", 36], ["created_at", "2024-06-28 08:04:14.556943"], ["updated_at", "2024-06-28 08:04:14.556943"], ["email", "igor29@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$ZqabgtLN.fiGmHf1hq6W.OUbrf5Qi7Sh3wxh9Tn0bVQQYo5RcA7UO"], ["salt", "UTRss7gxy92uCopxCENJ"]]
69
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 30"], ["age", 35], ["created_at", "2024-06-28 08:04:14.621767"], ["updated_at", "2024-06-28 08:04:14.621767"], ["email", "stan30@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$YutwrsH.94jLDISePckGtO0E3vA0uhLVJwxcF2ucKM5F9FaLkvgiW"], ["salt", "gxGYhYq3sxjyh4m99ai-"]]
70
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 31"], ["age", 54], ["created_at", "2024-06-28 08:04:14.686736"], ["updated_at", "2024-06-28 08:04:14.686736"], ["email", "bob31@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$35/YRLP0/OEUjrKROBZlO.a9ue4Zp9QOY5o.ba6VTh1Wn3j4CdYxm"], ["salt", "AK9a5j_xeGz5PLLns8m1"]]
71
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 32"], ["age", 35], ["created_at", "2024-06-28 08:04:14.751684"], ["updated_at", "2024-06-28 08:04:14.751684"], ["email", "stan32@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$3xMkvM7df8ti35.frzu/vOEBUVDBpM3y51uFkRHCiozxELuloEkRW"], ["salt", "LzzPEGamEdMfLEHkW1gx"]]
72
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 33"], ["age", 17], ["created_at", "2024-06-28 08:04:14.816892"], ["updated_at", "2024-06-28 08:04:14.816892"], ["email", "bob33@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$d3fvXJwA8T6LeNj2b7ogxO8SgTn/2GKDFX9bAbD4SKvXCftJ1trvO"], ["salt", "nPMprx4xvB9A14Zsjyvn"]]
73
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 34"], ["age", 16], ["created_at", "2024-06-28 08:04:14.881340"], ["updated_at", "2024-06-28 08:04:14.881340"], ["email", "alan34@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$F2yWXGIt1Zp.u5FrWVcCfehIecctOMkMvQ7ptwp839g9o.z/pZl2C"], ["salt", "t83-wDYzQ4cex_Ey3vBG"]]
74
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 35"], ["age", 40], ["created_at", "2024-06-28 08:04:14.946616"], ["updated_at", "2024-06-28 08:04:14.946616"], ["email", "kris35@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$ktQphj517sRyVSTKRgw96OTlaoUEdyiI9oDNImFgNBT447FA9orMa"], ["salt", "5NE_TuqXzPSJkrreWEwU"]]
75
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 36"], ["age", 97], ["created_at", "2024-06-28 08:04:15.011046"], ["updated_at", "2024-06-28 08:04:15.011046"], ["email", "bob36@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$GNv8DTirIYB5yBKjiTVksuT2GsFDtPExdNgqI22Z8T1QobR./56vy"], ["salt", "XhVuc24FAHtxP4za1Wew"]]
76
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 37"], ["age", 50], ["created_at", "2024-06-28 08:04:15.076370"], ["updated_at", "2024-06-28 08:04:15.076370"], ["email", "alan37@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$vJzcYzkkyLveIXEB8uxpRuTSn9XOJf31JwQZIZUv.f0QOOHcLBFbq"], ["salt", "6xDj-1u5X2ER9xRpe5K3"]]
77
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 38"], ["age", 98], ["created_at", "2024-06-28 08:04:15.140927"], ["updated_at", "2024-06-28 08:04:15.140927"], ["email", "igor38@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$fZpko1MNy1fQHiY1aaBZtOl1ZPBUv/Cw4zMouJ0BotCydhMlm2fly"], ["salt", "LzjDj8dxjsgx5STuwpUm"]]
78
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 39"], ["age", 94], ["created_at", "2024-06-28 08:04:15.206232"], ["updated_at", "2024-06-28 08:04:15.206232"], ["email", "igor39@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$RDnoTrqTwZ65jzE3Q.JyMO.pssK5NoLgVmGNR39Q0OCfSee9ADMbm"], ["salt", "tUVNWyxtRWWycUCo3e7b"]]
79
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 40"], ["age", 53], ["created_at", "2024-06-28 08:04:15.270389"], ["updated_at", "2024-06-28 08:04:15.270389"], ["email", "bob40@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$5QV863MLgtjt/ZkeYxps2ujQGiDni2tp5vnCyGnfGqemKwY3UF2N2"], ["salt", "yMZY5yt7zw9FABCrDN62"]]
80
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 41"], ["age", 56], ["created_at", "2024-06-28 08:04:15.334813"], ["updated_at", "2024-06-28 08:04:15.334813"], ["email", "michaeljohn41@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$.bE2u6sGcxZQ96ZYO8P4vef/Az4M1oJ6yb20HhPujNEIJYFyLVXDm"], ["salt", "-w2jwG6wfDxjf3Urrn4C"]]
81
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 42"], ["age", 79], ["created_at", "2024-06-28 08:04:15.398561"], ["updated_at", "2024-06-28 08:04:15.398561"], ["email", "bob42@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$Iv5zVSnxAl8UPjlObIyRS.AYxZL3IpbTvsEQzwe8.Pl.g7t1CkMz6"], ["salt", "Q3mnAo2qm32w6u-K18WH"]]
82
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 43"], ["age", 23], ["created_at", "2024-06-28 08:04:15.463241"], ["updated_at", "2024-06-28 08:04:15.463241"], ["email", "stan43@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$tOjNrvbpAh0euRhST4ej3.JloLN1WF2XG9SmK78hrQHDdsgnu0jOW"], ["salt", "LXxwruJE83vzyW2X6gcx"]]
83
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 44"], ["age", 28], ["created_at", "2024-06-28 08:04:15.527859"], ["updated_at", "2024-06-28 08:04:15.527859"], ["email", "alan44@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$iXZF4RoM6lIAW1PzG0RNzegHbhDPGj0PG6ENm8G4rv7uIvtxwp1vW"], ["salt", "Br3spfvuuUH56WNRbJtp"]]
84
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 45"], ["age", 73], ["created_at", "2024-06-28 08:04:15.594707"], ["updated_at", "2024-06-28 08:04:15.594707"], ["email", "michaeljohn45@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$CA.uFwvtqhNQXzev/VusJeMuyhFgc7M9Ru0JkGNuQLns.IkRZcIG6"], ["salt", "9xhYYL2ByMz1y8UPb5Yv"]]
85
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 46"], ["age", 37], ["created_at", "2024-06-28 08:04:15.659425"], ["updated_at", "2024-06-28 08:04:15.659425"], ["email", "bob46@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$7JRTfw9qYQw2q666Q2gJruQTUL6OJcFXNL0WC/vtsL2VYH2uzw65C"], ["salt", "fwksPaQ-AysUgZyShkZ9"]]
86
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 47"], ["age", 14], ["created_at", "2024-06-28 08:04:15.724620"], ["updated_at", "2024-06-28 08:04:15.724620"], ["email", "igor47@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$eivfxaAKQAhhU3woXUra0.SIuXeWHdA4s8QRCWizNH4p9vl4GzAoi"], ["salt", "Ws66-K9GErwQPfobHsfo"]]
87
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 48"], ["age", 57], ["created_at", "2024-06-28 08:04:15.788245"], ["updated_at", "2024-06-28 08:04:15.788245"], ["email", "michaeljohn48@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$YK/nG8.zj6B8AmlW4ZC7QORHTdnNuOXfMyEbSAWy0YR4KdY5M3xGW"], ["salt", "Pd-_r9EP64yMFdxLQkQC"]]
88
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 49"], ["age", 69], ["created_at", "2024-06-28 08:04:15.852506"], ["updated_at", "2024-06-28 08:04:15.852506"], ["email", "igor49@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$y8jkjSJGignNhWtG1/4s..hTAIJYlYvfQYvg4P.iD.PHH9Kt7yUmK"], ["salt", "eK6kMHte4DSms4fwqR76"]]
89
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 50"], ["age", 60], ["created_at", "2024-06-28 08:04:15.916656"], ["updated_at", "2024-06-28 08:04:15.916656"], ["email", "alan50@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$1O7nByu8U42AtihQeF0tHureWxrl/R1zuF/P8VAwmgN7/0w8uG6q2"], ["salt", "yKhMSy9Z-RmtTvKg6gGM"]]
90
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 51"], ["age", 5], ["created_at", "2024-06-28 08:04:15.981294"], ["updated_at", "2024-06-28 08:04:15.981294"], ["email", "stan51@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$o2jGrCaafTFk3/q58mOC3.VpuTCsGimUXVwGb3/SXlqxMYG5wdMPq"], ["salt", "fMXVjbpgfWxJr-mDe-zX"]]
91
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 52"], ["age", 64], ["created_at", "2024-06-28 08:04:16.049858"], ["updated_at", "2024-06-28 08:04:16.049858"], ["email", "alan52@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$SV460TT6e8x1I3l45AYZ5ecQft2gLGukXlqvo2LSieD6dOv.LI8F2"], ["salt", "9sowaSpZLrMHxxUo-pDE"]]
92
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 53"], ["age", 82], ["created_at", "2024-06-28 08:04:16.115541"], ["updated_at", "2024-06-28 08:04:16.115541"], ["email", "stan53@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$r4eU3VtGJF2S7Xahpc8Gjut0efPS0bBSwaXwqQtMobT8EVxwi.yLi"], ["salt", "_6HJ-xdtykLqk-qpQrLu"]]
93
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 54"], ["age", 7], ["created_at", "2024-06-28 08:04:16.180049"], ["updated_at", "2024-06-28 08:04:16.180049"], ["email", "igor54@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$wE9DI01ccwa73npC7e38KOvvw3TCg.DLn8F0bTTp49pQyN7yf170O"], ["salt", "jsyfhkzgYXzARiTsaWuy"]]
94
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 55"], ["age", 90], ["created_at", "2024-06-28 08:04:16.244393"], ["updated_at", "2024-06-28 08:04:16.244393"], ["email", "igor55@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$O7yLznfafqmlYGbfUI9OjeBjq6UZFu0qstx2LpQpNftndFIL663E."], ["salt", "ToAhuRZXczuVFknBj5uu"]]
95
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 56"], ["age", 56], ["created_at", "2024-06-28 08:04:16.308672"], ["updated_at", "2024-06-28 08:04:16.308672"], ["email", "kris56@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$MyWyNIh0aRKYyt4N1IvA7eRneo45AzBaiZbByyOIJ.4zrEnx0PsUa"], ["salt", "ewP5ZC59HJsFJL-715qW"]]
96
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 57"], ["age", 83], ["created_at", "2024-06-28 08:04:16.372651"], ["updated_at", "2024-06-28 08:04:16.372651"], ["email", "igor57@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$0rYzsXqzIxKdVQKcC0rRyO2RGSl.YYOiFe35HsV/alEkmqCkqsU1i"], ["salt", "GbDkDmouybeFLgdNZiLd"]]
97
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 58"], ["age", 95], ["created_at", "2024-06-28 08:04:16.436629"], ["updated_at", "2024-06-28 08:04:16.436629"], ["email", "alan58@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$G6tzovWYtuZ0Rnbor7qzjOZVNuJPk7MCwK4NlCl.LnushcDbpzAqu"], ["salt", "bvsfpi3Ax8xZoinsFDB6"]]
98
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 59"], ["age", 75], ["created_at", "2024-06-28 08:04:16.501275"], ["updated_at", "2024-06-28 08:04:16.501275"], ["email", "kris59@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$FLvtalOzZNJGVpFY1IOi/eOzwR4qg58UBAEft7oRdZSH.onF/kTvS"], ["salt", "XMLCisQUmSTySxDZTPM4"]]
99
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 60"], ["age", 86], ["created_at", "2024-06-28 08:04:16.566849"], ["updated_at", "2024-06-28 08:04:16.566849"], ["email", "igor60@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$5ICH/HuxRqO4om9VJxkoA.b8EpkbnNZYdDtIcHonEPtRNnS0NkxCe"], ["salt", "eDAi7PViKEySzguNXEdF"]]
100
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 61"], ["age", 28], ["created_at", "2024-06-28 08:04:16.633253"], ["updated_at", "2024-06-28 08:04:16.633253"], ["email", "bob61@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$iP1gUKIut1x4AMN0mlK5buR8Yp39p7JMH0nRXQ1mG5Ht0E.XbInJ6"], ["salt", "FYVAtKJNTgBkknfYr2Dw"]]
101
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 62"], ["age", 91], ["created_at", "2024-06-28 08:04:16.699044"], ["updated_at", "2024-06-28 08:04:16.699044"], ["email", "bob62@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$IFNi4NVEgWC17iZzMue39et1U3vWpmVeJLDrHFwjDleCi2NpKTVyG"], ["salt", "pz2pCzdZDSCkmP4FSqA-"]]
102
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 63"], ["age", 20], ["created_at", "2024-06-28 08:04:16.763569"], ["updated_at", "2024-06-28 08:04:16.763569"], ["email", "alan63@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$6kXkll5dA45WIokohQIlsuRUlkb6QiRhBbf6kpy8LnzRPrFsa784i"], ["salt", "xNKQRwkKwmSBLTrexmhS"]]
103
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 64"], ["age", 20], ["created_at", "2024-06-28 08:04:16.827652"], ["updated_at", "2024-06-28 08:04:16.827652"], ["email", "alan64@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$rxAJVD9b2/oKa1WCsbW6Fe/Ygdl5EdB84AT5BUeSaXX99g1tIOaEW"], ["salt", "WfUcLxzYZwQhx5LBT19k"]]
104
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 65"], ["age", 92], ["created_at", "2024-06-28 08:04:16.891798"], ["updated_at", "2024-06-28 08:04:16.891798"], ["email", "alan65@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$avBxe4tUrstMzXgQij2z3.O6sE3oBj9rDxg/MbLRbRlXMSO6K8KF2"], ["salt", "Laow_tyZf26PZXrDhvz3"]]
105
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 66"], ["age", 89], ["created_at", "2024-06-28 08:04:16.955818"], ["updated_at", "2024-06-28 08:04:16.955818"], ["email", "stan66@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$0U91liMLGg1VfLwQSQPR7e6glATHjchg9qLRZvlPuurYqFgGX6KtO"], ["salt", "NNiFjYLk8se6rZeox-5Z"]]
106
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 67"], ["age", 13], ["created_at", "2024-06-28 08:04:17.020190"], ["updated_at", "2024-06-28 08:04:17.020190"], ["email", "bob67@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$NcsOJ1s/LWwVyMnGjQ9wW.EOiYkdleSyeOGzO7J6wLRTq7drM.A6q"], ["salt", "2zZ6kpn9z7tf_kKAW7UH"]]
107
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 68"], ["age", 29], ["created_at", "2024-06-28 08:04:17.084649"], ["updated_at", "2024-06-28 08:04:17.084649"], ["email", "bob68@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$4rI1wQL9RNHS.orI/mXZkees.um/Rn8z3kqFHSz1wplyVYPHOx.nG"], ["salt", "LsaP5B7XyJvTZ3yHV4ky"]]
108
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 69"], ["age", 52], ["created_at", "2024-06-28 08:04:17.148860"], ["updated_at", "2024-06-28 08:04:17.148860"], ["email", "igor69@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$DyF4icyL9U/K0Vg9VYI2Y.X3RAQHwylVT/dHNvyzjiPWStg6pnQ8G"], ["salt", "NNa-87EaALJ_u31EeCzd"]]
109
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 70"], ["age", 60], ["created_at", "2024-06-28 08:04:17.213524"], ["updated_at", "2024-06-28 08:04:17.213524"], ["email", "michaeljohn70@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$6bkeY7nHAHWSrm8Av0f6T.thspZOcLV8h92iwr48mogYcEs3PjZkS"], ["salt", "7PynK5oA9NzreeWT6V3V"]]
110
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 71"], ["age", 4], ["created_at", "2024-06-28 08:04:17.277264"], ["updated_at", "2024-06-28 08:04:17.277264"], ["email", "michaeljohn71@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$MT7JwQlrO9XWH4FOVJ4eieHyRQSUpKrldHEJFFkKdU/uVJNmZdEX2"], ["salt", "YHp-cACXmEmzGEdxXsPy"]]
111
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 72"], ["age", 88], ["created_at", "2024-06-28 08:04:17.341260"], ["updated_at", "2024-06-28 08:04:17.341260"], ["email", "stan72@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$T0s5gAJHXL0ywE3dDRPJJOb9rn9OKB3pHGZ84.EniyQy/4AWwi9Au"], ["salt", "bsp2Ay3sym2vqnvVeM7C"]]
112
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 73"], ["age", 49], ["created_at", "2024-06-28 08:04:17.404948"], ["updated_at", "2024-06-28 08:04:17.404948"], ["email", "kris73@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$2kLoKpRblyaYj6i9iZ55ZeKBUeUsSI8WuoYQ4iBStWaJUYjCshJ72"], ["salt", "7GhW1ECpddyDsWE5K9CG"]]
113
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 74"], ["age", 40], ["created_at", "2024-06-28 08:04:17.469376"], ["updated_at", "2024-06-28 08:04:17.469376"], ["email", "bob74@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$8Biweu24Qw2.oAUdldrp7OshEvwd.Yb9grwfsuQViLuGdP3vw9D0K"], ["salt", "xBHSPsKH4TKHyFERvfo4"]]
114
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 75"], ["age", 29], ["created_at", "2024-06-28 08:04:17.533567"], ["updated_at", "2024-06-28 08:04:17.533567"], ["email", "stan75@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$MBY0Gs/nfvll54kKr69z9OeB5VouLigVjL6FJwp9p4V.FDGCbqgB."], ["salt", "5AjzosVBUppzHbcoyTsZ"]]
115
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 76"], ["age", 71], ["created_at", "2024-06-28 08:04:17.598597"], ["updated_at", "2024-06-28 08:04:17.598597"], ["email", "igor76@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$2AME5pmvab6PgtUztFKLhumVb.fHZ0GiI.0tHIfnFw5gKc46dQzu2"], ["salt", "saKAHNuGNqzUAQDTzSpC"]]
116
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 77"], ["age", 6], ["created_at", "2024-06-28 08:04:17.663854"], ["updated_at", "2024-06-28 08:04:17.663854"], ["email", "stan77@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$PSyyH.BWJfrJH6s4W8UaH.5CrCn7tCqPfS2iCinaFZLhjbiNeD4pK"], ["salt", "v3UF3aPVEreN3pJQsEiN"]]
117
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 78"], ["age", 28], ["created_at", "2024-06-28 08:04:17.733637"], ["updated_at", "2024-06-28 08:04:17.733637"], ["email", "alan78@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$Gj9RpV/zcF0sH1ZUjrmuMec9AwQ26qz5TR.DoQQo8vWhwW2jYbbvG"], ["salt", "zxH5VEpwCxt2-xbx_Jmx"]]
118
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 79"], ["age", 85], ["created_at", "2024-06-28 08:04:17.803807"], ["updated_at", "2024-06-28 08:04:17.803807"], ["email", "igor79@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$VsnklFB8r8lt2oZeVkhDQOYMZRRohpVdTT1XwFn3y/qlvuEV7ZhTK"], ["salt", "waCua4vva9PdFUx7UgRJ"]]
119
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 80"], ["age", 0], ["created_at", "2024-06-28 08:04:17.872393"], ["updated_at", "2024-06-28 08:04:17.872393"], ["email", "stan80@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$fAjQAti4ogE4smA1JVCO2ert65RHRcvngFJ1Q7R3D31gMGfsg1sZu"], ["salt", "qepuNsDqXpJ_ddi3tsK3"]]
120
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 81"], ["age", 99], ["created_at", "2024-06-28 08:04:17.937526"], ["updated_at", "2024-06-28 08:04:17.937526"], ["email", "alan81@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$eMgQbLtAOD6yzsGka2bHEOG1RG0OzfnLPzXhjmBTUcsQcqo22P/nu"], ["salt", "sUZykhz89E5YyiwJDBvz"]]
121
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 82"], ["age", 17], ["created_at", "2024-06-28 08:04:18.002511"], ["updated_at", "2024-06-28 08:04:18.002511"], ["email", "stan82@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$pkDVlqd3yNznpt/n70qYseXeH5LsLpn0bCYYXU830NTyxi.q1LzR2"], ["salt", "BsCrQNFs1mPAG7rDNPxS"]]
122
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 83"], ["age", 11], ["created_at", "2024-06-28 08:04:18.067364"], ["updated_at", "2024-06-28 08:04:18.067364"], ["email", "alan83@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$P26hmnGGUW9TusHzHgTYHewJJBBKDXU/nolby6BqtJ8d7HyaDzuwS"], ["salt", "kxXxwbmDyRmxwKh9ohSt"]]
123
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 84"], ["age", 93], ["created_at", "2024-06-28 08:04:18.132866"], ["updated_at", "2024-06-28 08:04:18.132866"], ["email", "bob84@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$RmI1f6H17tvdedRxXMWJq.XmCM38WxYWaDKVlK4Od5b8SksUy2nNu"], ["salt", "CnNX6nJdzxMEqNeDL9yE"]]
124
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 85"], ["age", 9], ["created_at", "2024-06-28 08:04:18.197565"], ["updated_at", "2024-06-28 08:04:18.197565"], ["email", "michaeljohn85@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$6yng2Q6WNbJMBk9qH5MFH.thIvRdL/lbD/Xas28WYhkYQMilge922"], ["salt", "ghwMpNR9pBWexQKnT9tK"]]
125
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 86"], ["age", 19], ["created_at", "2024-06-28 08:04:18.262304"], ["updated_at", "2024-06-28 08:04:18.262304"], ["email", "stan86@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$eQX28qu.UkquI1z6W.ZK0u8IcWCBiBvP6Jd9TanFsTMOhZe0g6au2"], ["salt", "FzvRdwBUZRz6wzREx_-h"]]
126
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 87"], ["age", 37], ["created_at", "2024-06-28 08:04:18.326228"], ["updated_at", "2024-06-28 08:04:18.326228"], ["email", "alan87@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$M.wkdaKERjWSXGKTIG7yK.oIzQKFQ87LEbBPfgKKVePRxCbV/paQ6"], ["salt", "B26k99z_WGzDQxrJFmst"]]
127
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 88"], ["age", 58], ["created_at", "2024-06-28 08:04:18.390534"], ["updated_at", "2024-06-28 08:04:18.390534"], ["email", "kris88@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$bhkRO5kst/NBmTxhd/sSRuS/zmfxnQJQMwLMYBiRvRjnsIY9yVEIm"], ["salt", "9_4vdzqf6Ca64Qk9ord9"]]
128
- User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 89"], ["age", 0], ["created_at", "2024-06-28 08:04:18.454455"], ["updated_at", "2024-06-28 08:04:18.454455"], ["email", "alan89@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$F3WVxWd32TGc5d/sT6RYM.egMHW/hAuSmu6s8AK3RKxlLVTY4SJdW"], ["salt", "QCTGygn-3qJrpjyZ2zeT"]]
129
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 90"], ["age", 35], ["created_at", "2024-06-28 08:04:18.519241"], ["updated_at", "2024-06-28 08:04:18.519241"], ["email", "michaeljohn90@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$49W2L8GbcnvrgKjm15MO1.PMvhzhL.0HXpD5io6EsjHbE2sDcfTqy"], ["salt", "__CsmEcLxobXs5T9TB1k"]]
130
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 91"], ["age", 28], ["created_at", "2024-06-28 08:04:18.583533"], ["updated_at", "2024-06-28 08:04:18.583533"], ["email", "bob91@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$Sij1B7GnQt1netWte/XPfeBMM9Hvv22tUKvPOSQ8jXMT3O7KX4Cmq"], ["salt", "zpDbobWo-YHz9J8mtxbR"]]
131
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 92"], ["age", 18], ["created_at", "2024-06-28 08:04:18.717339"], ["updated_at", "2024-06-28 08:04:18.717339"], ["email", "stan92@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$GIiN6.ae.SMdQK5GN/W2Ge5Vuqx6ocKGax85ri1fxkd5f.HrPCtuK"], ["salt", "Tc19oCrhXWN8P-DGHETV"]]
132
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 93"], ["age", 28], ["created_at", "2024-06-28 08:04:18.783684"], ["updated_at", "2024-06-28 08:04:18.783684"], ["email", "stan93@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$yM/cz/eOUm4.RMHZnpRh.OfZGjXx7eWg/OsR6hyDj1d9A790y329O"], ["salt", "7N6RB6rWc_wxUE-w-4ca"]]
133
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 94"], ["age", 64], ["created_at", "2024-06-28 08:04:18.850529"], ["updated_at", "2024-06-28 08:04:18.850529"], ["email", "stan94@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$wGG5YwA2MyDIMe5n3NXJZOzsLCmv5uwGFewknb2WxSFw6THHXPymq"], ["salt", "sT2vFcqsxzqEECagxn7p"]]
134
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 95"], ["age", 18], ["created_at", "2024-06-28 08:04:18.916538"], ["updated_at", "2024-06-28 08:04:18.916538"], ["email", "kris95@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$n7/RRwf6uwFjpZyRe9eK9uRqZd6Ao0BGsOky8cgMEjJtAxAKXdmjW"], ["salt", "kbv5Gz8TWyMsprzeCXzn"]]
135
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 96"], ["age", 88], ["created_at", "2024-06-28 08:04:18.981347"], ["updated_at", "2024-06-28 08:04:18.981347"], ["email", "igor96@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$P0rHy.sIdvf4n.RrkVSYduWW8BK8S8806zitbuWYsmfwMvOKgRFVu"], ["salt", "VcDLr3RGM6Rabq2xwCDP"]]
136
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 97"], ["age", 48], ["created_at", "2024-06-28 08:04:19.046109"], ["updated_at", "2024-06-28 08:04:19.046109"], ["email", "kris97@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$H3.Ml99WO4Bg/BESMViClO0wbdTOMABJIXiX6Q8YjOZsIyK5yiVUK"], ["salt", "m6zNUJa4yLiy5r9L7LrF"]]
137
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 98"], ["age", 79], ["created_at", "2024-06-28 08:04:19.110149"], ["updated_at", "2024-06-28 08:04:19.110149"], ["email", "bob98@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$mPKXVznG1QDj1Re6ZFhA..p7i9FUzo7ROItfEXWK3FnotZjJ5kHjy"], ["salt", "wrn2g9sQrH1CZWuvLgbD"]]
138
- User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 99"], ["age", 66], ["created_at", "2024-06-28 08:04:19.174624"], ["updated_at", "2024-06-28 08:04:19.174624"], ["email", "stan99@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$RqgL5YFy8/sRFMNhEm6Voe7Rfm1YoKo74Wblb6dqXpburkgQErGAm"], ["salt", "_X9ANDtWsw9EVzXRL89U"]]
139
- ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20220827040518"]]
140
- TRANSACTION (2.8ms) commit transaction
141
- ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
142
- TRANSACTION (0.0ms) begin transaction
143
- ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2024-06-28 08:04:19.188791"], ["updated_at", "2024-06-28 08:04:19.188791"]]
144
- TRANSACTION (0.8ms) commit transaction
145
-  (0.0ms) SELECT sqlite_version(*)
146
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
147
-  (1.0ms) SELECT sqlite_version(*)
148
-  (2.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
149
- ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
150
-  (0.1ms) SELECT sqlite_version(*)
151
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
152
- Started GET "/" for ::1 at 2024-06-28 11:36:16 +0300
153
-  (1.2ms) SELECT sqlite_version(*)
154
-  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
155
- Processing by HomeController#index as HTML
156
- Rendering layout layouts/application.html.erb
157
- Rendering home/index.html.erb within layouts/application
158
- Rendered home/index.html.erb within layouts/application (Duration: 5.7ms | Allocations: 1815)
159
- Rendered shared/_header.html.erb (Duration: 0.5ms | Allocations: 115)
160
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.2ms | Allocations: 120)
161
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.2ms | Allocations: 172)
162
- Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.4ms | Allocations: 135)
163
- User Load (0.7ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
164
- ↳ app/views/shared/_footer.html.erb:15
165
- Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 63.9ms | Allocations: 68485)
166
- Rendered shared/_footer.html.erb (Duration: 65.5ms | Allocations: 69368)
167
- Rendered layout layouts/application.html.erb (Duration: 74.0ms | Allocations: 72234)
168
- Completed 200 OK in 85ms (Views: 77.3ms | ActiveRecord: 1.2ms | Allocations: 75946)
169
-
170
-
171
- Started GET "/" for ::1 at 2024-06-28 11:36:17 +0300
172
- Processing by HomeController#index as HTML
173
- Rendering layout layouts/application.html.erb
174
- Rendering home/index.html.erb within layouts/application
175
- Rendered home/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 819)
176
- Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
177
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
178
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
179
- Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
180
- User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
181
- ↳ app/views/shared/_footer.html.erb:15
182
- Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.7ms | Allocations: 1912)
183
- Rendered shared/_footer.html.erb (Duration: 3.0ms | Allocations: 2058)
184
- Rendered layout layouts/application.html.erb (Duration: 4.9ms | Allocations: 3189)
185
- Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 3510)
186
-
187
-
188
- Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:36:19 +0300
189
- Processing by AnyLogin::ApplicationController#any_login as HTML
190
- Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"6", "id"=>""}
191
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]]
192
- Redirected to http://localhost:3000/
193
- Completed 302 Found in 6ms (ActiveRecord: 0.2ms | Allocations: 3072)
194
-
195
-
196
- Started GET "/" for ::1 at 2024-06-28 11:36:19 +0300
197
- Processing by HomeController#index as HTML
198
- Rendering layout layouts/application.html.erb
199
- Rendering home/index.html.erb within layouts/application
200
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]]
201
- ↳ app/views/home/index.html.erb:1
202
- Rendered home/index.html.erb within layouts/application (Duration: 2.7ms | Allocations: 1491)
203
- Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
204
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.1ms | Allocations: 5)
205
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.1ms | Allocations: 5)
206
- Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
207
- User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
208
- ↳ app/views/shared/_footer.html.erb:15
209
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 6], ["LIMIT", 1]]
210
- ↳ app/views/shared/_footer.html.erb:15
211
- Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.8ms | Allocations: 3011)
212
- Rendered shared/_footer.html.erb (Duration: 7.6ms | Allocations: 3181)
213
- Rendered layout layouts/application.html.erb (Duration: 11.0ms | Allocations: 5000)
214
- Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.6ms | Allocations: 5330)
215
-
216
-
217
- Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:36:22 +0300
218
- Processing by AnyLogin::ApplicationController#any_login as HTML
219
- Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"2", "id"=>"", "back_to_previous_id"=>""}
220
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
221
- Redirected to http://localhost:3000/
222
- Completed 302 Found in 3ms (ActiveRecord: 0.1ms | Allocations: 1814)
223
-
224
-
225
- Started GET "/" for ::1 at 2024-06-28 11:36:22 +0300
226
- Processing by HomeController#index as HTML
227
- Rendering layout layouts/application.html.erb
228
- Rendering home/index.html.erb within layouts/application
229
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
230
- ↳ app/views/home/index.html.erb:1
231
- Rendered home/index.html.erb within layouts/application (Duration: 1.8ms | Allocations: 1257)
232
- Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
233
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
234
- Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
235
- Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
236
- User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
237
- ↳ app/views/shared/_footer.html.erb:15
238
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 2], ["LIMIT", 1]]
239
- ↳ app/views/shared/_footer.html.erb:15
240
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 6], ["LIMIT", 1]]
241
- ↳ app/views/shared/_footer.html.erb:15
242
- Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.5ms | Allocations: 3549)
243
- Rendered shared/_footer.html.erb (Duration: 7.0ms | Allocations: 3706)
244
- Rendered layout layouts/application.html.erb (Duration: 9.8ms | Allocations: 5273)
245
- Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.6ms | Allocations: 5556)
246
-
247
-
1
+  (0.0ms) DROP TABLE IF EXISTS "users"
2
+  (0.2ms) 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, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime(6), "remember_created_at" datetime(6), "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime(6), "last_sign_in_at" datetime(6), "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "role" varchar, "crypted_password" varchar, "salt" varchar)
3
+  (0.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
4
+  (0.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
5
+  (0.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
6
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES (20220827040518)
8
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES
9
+ (20151019154558),
10
+ (20150909210357),
11
+ (20150907190846),
12
+ (20150907190739);
13
+  (0.1ms) 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)
14
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
15
+ ActiveRecord::InternalMetadata Create (0.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('environment', 'development', '2025-05-28 19:12:34.854533', '2025-05-28 19:12:34.854534') RETURNING "key"
16
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
17
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "schema_sha1"]]
18
+ ActiveRecord::InternalMetadata Create (0.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('schema_sha1', 'b8af5e601d2e1cb8e066f3b2644254b31481ca71', '2025-05-28 19:12:34.855252', '2025-05-28 19:12:34.855253') RETURNING "key"
19
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
20
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
21
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
22
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
23
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
24
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC