-- SQL-Skript, um die bestehende material_contents Tabelle zu aktualisieren
USE klausurenweb_db;
-- Ändern des content_type ENUM, um "expectation" hinzuzufügen
ALTER TABLE material_contents
MODIFY COLUMN content_type ENUM('prompt', 'criteria', 'task', 'original_text', 'expectation') NOT NULL;
-- Bestätigung
SELECT 'material_contents Tabelle wurde aktualisiert.' AS Ergebnis;