We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b42aa commit c5be966Copy full SHA for c5be966
components/suggest/src/schema.rs
@@ -23,7 +23,7 @@ use sql_support::{
23
/// `clear_database()` by adding their names to `conditional_tables`, unless
24
/// they are cleared via a deletion trigger or there's some other good
25
/// reason not to do so.
26
-pub const VERSION: u32 = 35;
+pub const VERSION: u32 = 36;
27
28
/// The current Suggest database schema.
29
pub const SQL: &str = "
@@ -645,6 +645,10 @@ impl ConnectionInitializer for SuggestConnectionInitializer<'_> {
645
)?;
646
Ok(())
647
}
648
+ 35 => {
649
+ // The commit that added this migration was reverted.
650
+ Ok(())
651
+ }
652
_ => Err(open_database::Error::IncompatibleVersion(version)),
653
654
0 commit comments