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