Erweitere die Verwaltung von Identitäten: Füge Unterstützung für URL-Felder hinzu, aktualisiere die Benutzeroberfläche zur Bearbeitung von Feldern und verbessere die Darstellung in Tabellenform.

This commit is contained in:
Troy Grunt
2026-02-03 14:05:26 +01:00
parent 79f49441f7
commit 963d29fd4e
2 changed files with 106 additions and 20 deletions

View File

@@ -9,7 +9,7 @@ CREATE TABLE identities (
CREATE TABLE identity_fields (
id INT AUTO_INCREMENT PRIMARY KEY,
identity_id INT NOT NULL,
typ ENUM('single','multi','file') NULL,
typ ENUM('single','multi','file','url') NULL,
field_key VARCHAR(50) NOT NULL,
field_value TEXT NOT NULL,
FOREIGN KEY (identity_id)