Skip to content

Commit

Permalink
Bumping the places DB schema version
Browse files Browse the repository at this point in the history
This should have been bumped when the migration was added.  Not bumping
it means that nightly users aren't migrating their DBs, which is
breaking syncing.
  • Loading branch information
bendk committed Apr 3, 2023
1 parent fee69bc commit dce0f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/places/src/db/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::types::SyncStatus;
use rusqlite::Connection;
use sql_support::ConnExt;

pub const VERSION: u32 = 15;
pub const VERSION: u32 = 16;

// Shared schema and temp tables for the read-write and Sync connections.
const CREATE_SHARED_SCHEMA_SQL: &str = include_str!("../../sql/create_shared_schema.sql");
Expand Down

0 comments on commit dce0f34

Please sign in to comment.