backup.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. header('Access-Control-Allow-Origin: *');
  3. header('Cache-Control: no-cache, must-revalidate');
  4. header('Content-type: application/json');
  5. $datum = date("Y-m-d", strtotime("-3 month"));
  6. $dbh = new PDO("mysql:host=localhost;dbname=tasks", "root", "gc01mysql");
  7. $dbh->setAttribute(PDO::ATTR_CASE, PDO::CASE_LOWER);
  8. echo "Daten ab {$datum} werden archiviert.\r\n";
  9. $insertQuery = "INSERT INTO status_meldung_historie SELECT * FROM status_meldung WHERE datum <= '{$datum}' ";
  10. $c = $dbh->query($insertQuery);
  11. if (!$c) {
  12. echo $dbh->errorInfo();
  13. die();
  14. }
  15. $deleteQuery = "DELETE FROM status_meldung WHERE datum <= '{$datum}' ";
  16. $c = $dbh->query($deleteQuery);
  17. if (!$c) {
  18. echo $dbh->errorInfo();
  19. die();
  20. }
  21. $insertQuery = "INSERT INTO status_kommentar_historie SELECT * FROM status_kommentar WHERE datum <= '{$datum}' ";
  22. $c = $dbh->query($insertQuery);
  23. if (!$c) {
  24. echo $dbh->errorInfo();
  25. die();
  26. }
  27. $deleteQuery = "DELETE FROM status_kommentar WHERE datum <= '{$datum}' ";
  28. $c = $dbh->query($deleteQuery);
  29. if (!$c) {
  30. echo $dbh->errorInfo();
  31. die();
  32. }
  33. echo "Erfolgreich abgeschlossen.\r\n";