2026-07-12 03:11:09 +02:00
|
|
|
|
-- ============================================================
|
|
|
|
|
|
-- Dati iniziali di test – esameits24-26
|
|
|
|
|
|
-- Password per tutti gli utenti: Password123!
|
2026-07-13 23:57:02 +02:00
|
|
|
|
-- 1 Andrea Villari – admin@example.it (amministratore)
|
|
|
|
|
|
-- 2 Maria Bianchi – maria.bianchi@example.it (operatore)
|
|
|
|
|
|
-- 3 Luca Conti – luca.conti@example.it (operatore)
|
2026-07-12 03:11:09 +02:00
|
|
|
|
-- ============================================================
|
|
|
|
|
|
|
2026-07-12 04:09:54 +02:00
|
|
|
|
USE `esameits24-26`;
|
2026-07-12 03:11:09 +02:00
|
|
|
|
|
2026-07-12 18:17:31 +02:00
|
|
|
|
-- ------------------------------------------------------------
|
|
|
|
|
|
-- Utenti
|
|
|
|
|
|
-- ------------------------------------------------------------
|
|
|
|
|
|
INSERT INTO utente (Nome, Cognome, Email, PasswordHash, Ruolo) VALUES
|
2026-07-13 23:47:33 +02:00
|
|
|
|
('Andrea', 'Villari', 'admin@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Amministratore'),
|
|
|
|
|
|
('Maria', 'Bianchi', 'maria.bianchi@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore'),
|
2026-07-13 23:57:02 +02:00
|
|
|
|
('Luca', 'Conti', 'luca.conti@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore');
|