Skip to content

Commit c811db9

Browse files
committed
Add bbr_digest to message table
1 parent ad3cce0 commit c811db9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bbr_cli/src/api/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ pub fn alter_tables(conn: &SqliteConnection) -> Result<(), Error> {
2727
bbr_digest BLOB NOT NULL DEFAULT
2828
x'0000000000000000000000000000000000000000000000000000000000000000';",
2929
)?;
30+
conn.execute(
31+
"ALTER TABLE messages ADD COLUMN
32+
bbr_digest BLOB;",
33+
)?;
3034
Ok(())
3135
}
3236

0 commit comments

Comments
 (0)