From 747365556f489a56f86732defbcdec0391ba4c28 Mon Sep 17 00:00:00 2001 From: AV77web Date: Mon, 13 Jul 2026 23:57:02 +0200 Subject: [PATCH] modifica alle password degli utenti nel file 02_seed.sql --- initdb/02_seed.sql | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/initdb/02_seed.sql b/initdb/02_seed.sql index a1fa187..2dcf7ab 100644 --- a/initdb/02_seed.sql +++ b/initdb/02_seed.sql @@ -1,10 +1,9 @@ -- ============================================================ -- Dati iniziali di test – esameits24-26 -- Password per tutti gli utenti: Password123! --- 1 Andrea Villari – admin@azienda.it (responsabile) --- 2 Mario Rossi – mario.rossi@azienda.it (dipendente) --- 3 Marco Bianchi – marco.bianchi@azienda.it (dipendente) --- 4 Anna Verdi – anna.verdi@azienda.it (dipendente) +-- 1 Andrea Villari – admin@example.it (amministratore) +-- 2 Maria Bianchi – maria.bianchi@example.it (operatore) +-- 3 Luca Conti – luca.conti@example.it (operatore) -- ============================================================ USE `esameits24-26`; @@ -15,4 +14,4 @@ USE `esameits24-26`; INSERT INTO utente (Nome, Cognome, Email, PasswordHash, Ruolo) VALUES ('Andrea', 'Villari', 'admin@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Amministratore'), ('Maria', 'Bianchi', 'maria.bianchi@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore'), - ('Luca', 'Conti', 'luca.conti@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore');ZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'DIPENDENTE'); \ No newline at end of file + ('Luca', 'Conti', 'luca.conti@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore'); \ No newline at end of file