Future<void> deleteAssignment(String assignmentId) async { await _client .from('curriculum_assignments') .delete() .eq('id', assignmentId); }