Remove obsolete repository writes

This commit is contained in:
2026-07-26 11:05:26 +02:00
parent ac465a1cc0
commit d23e7d990c
26 changed files with 79 additions and 371 deletions
@@ -28,8 +28,4 @@ export class ProjectRepository {
const [row] = await db.select().from(projects).where(eq(projects.id, projectId)).limit(1);
return row ?? null;
}
async delete(projectId: string) {
await db.delete(projects).where(eq(projects.id, projectId));
}
}