Future<int> deleteById(int systemLogId) async { return await (db.delete( db.systemLog, )..where((e) => e.id.equals(systemLogId))).go(); }