Direkt zum Hauptinhalt

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

Wenn die Korrekturdaten behalten werden sollen:

MDL sollen bleiben:

DELETE FROM tbl_mdl_correction WHERE mdl_correction_booking_id <> 0

Abwesenheitskorrekturen (Urlaub, ZA) sollen bleiben:

DELETE FROM tbl_time_absence WHERE absence_booking_id <> 0

 

sollen die MDL, Urlaub, ZA auch zurück gesetzt werden:

Drop Tabellen:

  • tbl_mdl_correction
  • tbl_time_absence

 

Abschließend bitte IMMER die Anwendung neu starten (Restart nodejs App in Plesk).