Merge tag 'v1.126.1'

Release 1.126.1
This commit is contained in:
link2xt
2023-10-24 14:31:39 +00:00
24 changed files with 386 additions and 665 deletions

View File

@@ -730,6 +730,15 @@ CREATE INDEX smtp_messageid ON imap(rfc724_mid);
)
.await?;
}
if dbversion < 102 {
sql.execute_migration(
"CREATE TABLE download (
msg_id INTEGER NOT NULL -- id of the message stub in msgs table
)",
102,
)
.await?;
}
// Add is_bot column to contacts table with default false.
if dbversion < 102 {