diff --git a/src/model/index_counter.rs b/src/model/index_counter.rs index 48f616f7..2602d5d9 100644 --- a/src/model/index_counter.rs +++ b/src/model/index_counter.rs @@ -116,16 +116,6 @@ impl TableSchema for CounterTable { type E = CounterEntry; type Filter = (DeletedFilter, Vec); - fn updated( - &self, - _tx: &mut db::Transaction, - _old: Option<&Self::E>, - _new: Option<&Self::E>, - ) -> db::TxOpResult<()> { - // nothing for now - Ok(()) - } - fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool { if filter.0 == DeletedFilter::Any { return true;