Decrement a column value
@override Future<int> decrement(String column, [int amount = 1]) { return increment(column, -amount); }