mirror of
https://github.com/chatmail/core.git
synced 2026-05-23 00:36:32 +03:00
migrate database
add 'protected' row in chats table, convert old verified-groups to 'protected'
This commit is contained in:
14
src/sql.rs
14
src/sql.rs
@@ -1368,6 +1368,20 @@ CREATE INDEX devmsglabels_index1 ON devmsglabels (label);
|
|||||||
.await?;
|
.await?;
|
||||||
sql.set_raw_config_int(context, "dbversion", 68).await?;
|
sql.set_raw_config_int(context, "dbversion", 68).await?;
|
||||||
}
|
}
|
||||||
|
if dbversion < 69 {
|
||||||
|
info!(context, "[migration] v69");
|
||||||
|
sql.execute(
|
||||||
|
"ALTER TABLE chats ADD COLUMN protected INTEGER DEFAULT 0;",
|
||||||
|
paramsv![],
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
sql.execute(
|
||||||
|
"UPDATE chats SET protected=1, type=120 WHERE type=130;", // 120=group, 130=old verified group
|
||||||
|
paramsv![],
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
sql.set_raw_config_int(context, "dbversion", 69).await?;
|
||||||
|
}
|
||||||
|
|
||||||
// (2) updates that require high-level objects
|
// (2) updates that require high-level objects
|
||||||
// (the structure is complete now and all objects are usable)
|
// (the structure is complete now and all objects are usable)
|
||||||
|
|||||||
Reference in New Issue
Block a user