From e2dc4366bb5f1fdd6fd0f40c38a64f4093909a4d Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Sun, 5 Oct 2025 17:01:52 +0000 Subject: [PATCH] draftv2 --- .gitignore | 1 + db/migrations/007_add_remember_me_token_to_users.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e427ff3..d387093 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules/ */node_modules/ */build/ +.env diff --git a/db/migrations/007_add_remember_me_token_to_users.sql b/db/migrations/007_add_remember_me_token_to_users.sql index 49ed11b..58e64f6 100644 --- a/db/migrations/007_add_remember_me_token_to_users.sql +++ b/db/migrations/007_add_remember_me_token_to_users.sql @@ -1,2 +1,2 @@ -- Add remember_token to users table -ALTER TABLE `users` ADD `remember_token` VARCHAR(255) NULL DEFAULT NULL AFTER `password`; +ALTER TABLE `users` ADD `remember_token` VARCHAR(255) NULL DEFAULT NULL AFTER `password_hash`;