aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-server-sqlite/migrations/20260127000000_remove-email-verification.sql (unfollow)
Commit message (Collapse)Author
3 dayschore: Move everything into one big crateBenedikt Peetz
That helps remove duplicated code and rustc/cargo will now also show dead code correctly.
2026-02-08fix: remove invalid IF EXISTS from sqlite drop column migration (#3145)Ryan
<!-- Thank you for making a PR! Bug fixes are always welcome, but if you're adding a new feature or changing an existing one, we'd really appreciate if you open an issue, post on the forum, or drop in on Discord --> ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing ## Summary SQLite doesn't support an `IF NOT EXISTS` on `ALTER TABLE` > https://www.sqlite.org/lang_altertable.html ``` atuin | Caused by: atuin | Other(while executing migration 20260127000000: error returned from database: (code: 1) near "exists": syntax error atuin | atuin | Caused by: atuin | 0: error returned from database: (code: 1) near "exists": syntax error atuin | 1: (code: 1) near "exists": syntax error ``` The fix works on my setup Ref: https://github.com/atuinsh/atuin/pull/3108#pullrequestreview-3713606584 Signed-off-by: Sped0n <hi@sped0n.com>
2026-01-27feat: remove user verification functionality (#3108)Ellie Huxtable
<!-- Thank you for making a PR! Bug fixes are always welcome, but if you're adding a new feature or changing an existing one, we'd really appreciate if you open an issue, post on the forum, or drop in on Discord --> ## 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>