17 lines
No EOL
1,022 B
SQL
17 lines
No EOL
1,022 B
SQL
-- ============================================================
|
||
-- Dati iniziali di test – esameits24-26
|
||
-- Password per tutti gli utenti: Password123!
|
||
-- 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`;
|
||
|
||
-- ------------------------------------------------------------
|
||
-- Utenti
|
||
-- ------------------------------------------------------------
|
||
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'); |