DESS - komplett zurück setzen
Die Tabellen kannst du am besten mit DROP TABLE direkt in SQL leeren. Dann fangen die Auto Inkrement IDs mit 1 an und die Tabellen sind komplett leer
Drop diese Tabellen:
- tbl_notification
- tbl_on_call
- tbl_time_booking
- tbl_time_booking_change_log
- tbl_time_booking_day
- tbl_time_booking_hour
- tbl_time_booking_work
- tbl_log
- tbl_mdl_entry
Setze alle MDL und Abwesenheiten auf 0 zurück:
DELETE FROM tbl_mdl_correction WHERE mdl_correction_booking_id <> 0
Setze alle Abwesenheitskorrekturen (Urlaub und ZA) auf 0 zurück:
DELETE FROM tbl_time_absence WHERE absence_booking_id <> 0
Abschließend bitte IMMER die Anwendung neu starten (Restart nodejs App in Plesk).