summaryrefslogtreecommitdiff
path: root/.sqlx/query-58db060ed86a4b4d9aa18078368e99be78ecea12b8600a20068bec69d0836f7c.json
Commit message (Collapse)AuthorAge
* Remove support for detecting and rejecting databases from historical ↵Owen Jacobson2025-11-09
| | | | | | migration streams. All known instances of that migration stream have long since disappeared, and this lets us get rid of a dependency.
* Fix invalid migration.Owen Jacobson2024-10-10
The original version of this migration happened to work correctly, by accident, for databases with exactly one login. I missed this, and so did Kit, because both of our test databases _actually do_ contain exactly one login, and because I didn't run the tests before committing the migration. The fixed version works correctly for all scenarios I tested (zero, one, and two users, not super thorough). I've added code to patch out the original migration hash in databases that have it; no further corrective work is needed, as if the migration failed, then it got backed out anyways, and if it succeeded, you fell into the "one user" case.