Aggiunto controllo univocità email

This commit is contained in:
2026-04-14 09:00:25 +02:00
parent d1330023c1
commit 3bbd9e6fc7
+1 -1
View File
@@ -35,7 +35,7 @@ CREATE TABLE Utenti(
id_utente INT PRIMARY KEY AUTO_INCREMENT,
nome VARCHAR(30),
cognome VARCHAR(18),
email VARCHAR(255),
email VARCHAR(255) UNIQUE,
password VARCHAR(255)
);