From e2b421c88479857831e938acb311aef5127f38b4 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 27 Jan 2026 13:56:18 -0800 Subject: feat: remove user verification functionality (#3108) ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- .../migrations/20260127000000_remove-email-verification.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 crates/atuin-server-sqlite/migrations/20260127000000_remove-email-verification.sql (limited to 'crates/atuin-server-sqlite/migrations/20260127000000_remove-email-verification.sql') diff --git a/crates/atuin-server-sqlite/migrations/20260127000000_remove-email-verification.sql b/crates/atuin-server-sqlite/migrations/20260127000000_remove-email-verification.sql new file mode 100644 index 00000000..15309920 --- /dev/null +++ b/crates/atuin-server-sqlite/migrations/20260127000000_remove-email-verification.sql @@ -0,0 +1,2 @@ +drop table if exists user_verification_token; +alter table users drop column if exists verified_at; -- cgit v1.3.1