update method
Implementation
Future<int> update(
Session session,
/* K | List */ Object key,
List<Expr<void>> Function(C columns) set,
) async {
return await updateAll(
session,
set: set,
where: (c) => _whereFromKey(c, key),
// limit: 1, - postgresql does not recognize limit
);
}