bump db version to 17, cleanup, rerun old migrations for users who downgraded

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2025-02-06 16:48:19 -05:00
parent 16b07ae3ec
commit f761d4d5c9
No known key found for this signature in database
2 changed files with 14 additions and 21 deletions

View file

@ -69,9 +69,8 @@ impl Data {
}
#[inline]
pub fn bump_database_version(&self, new_version: u64) -> Result<()> {
pub fn bump_database_version(&self, new_version: u64) {
self.global.raw_put(b"version", new_version);
Ok(())
}
#[inline]