Files
adminandClaude Opus 5 ec6222c4eb Einheitliches Schema in utf8mb4 (update/schema.sql)
Grundlage ist die Struktur der kunden-Datenbank. project und work kommen
aus ingwa, weil der Code sie fuer das Projekte-Modul braucht, sie in kunden
aber fehlen. Die Sicherungskopien altlasten_backup* sind nicht enthalten.
Tabellen, Spalten, Schluessel und Fremdschluessel sind sonst unveraendert,
nur Zeichensatz und Sortierung sind einheitlich utf8mb4_unicode_ci.

.gitignore laesst update/schema.sql als einzige .sql-Datei zu.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-17 09:53:16 +02:00

48 lines
1.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ---------------------------------------------------------------
# Kundenverwaltung .gitignore
# ---------------------------------------------------------------
# --- Zugangsdaten / Konfiguration (liegt ausserhalb des Repos,
# siehe CONFIG_PATH in incs/constants.php) --------------------
*_settings.conf
.env
.env.*
# --- Datenbank-Dumps / Backups ---------------------------------
*.sql
*.sql.gz
# Ausnahme: das Schema selbst enthaelt keine Daten
!update/schema.sql
*.dump
*.bak
# --- Kundendaten / Uploads (personenbezogene Daten!) ------------
uploads_*/notes/*
uploads_*/signs/*
!uploads_*/notes/.gitkeep
!uploads_*/signs/.gitkeep
# --- Smarty-Compile-Cache (generiert) --------------------------
templates_c/*
!templates_c/.gitkeep
ajax/templates_c/*
!ajax/templates_c/.gitkeep
# --- Laufzeit-Temp ---------------------------------------------
temp/*
temp/pdfpreview/*
temp/pdftemp/*
!temp/pdfpreview/
!temp/pdftemp/
!temp/pdfpreview/.gitkeep
!temp/pdftemp/.gitkeep
# --- Editor / OS -----------------------------------------------
.idea/
.vscode/
*.swp
*~
Thumbs.db
desktop.ini
.DS_Store