2026-07-12 03:11:09 +02:00
|
|
|
|
-- ============================================================
|
|
|
|
|
|
-- Dati iniziali di test – esameits24-26
|
|
|
|
|
|
-- Password per tutti gli utenti: Password123!
|
2026-07-12 17:25:07 +02:00
|
|
|
|
-- 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)
|
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 17:25:07 +02:00
|
|
|
|
INSERT INTO utenti (nome, cognome, email, password_hash, ruolo) VALUES
|
|
|
|
|
|
('Andrea', 'Villari', 'admin@azienda.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'RESPONSABILE_AMMINISTRATIVO'),
|
|
|
|
|
|
('Mario', 'Rossi', 'mario.rossi@azienda.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'DIPENDENTE'),
|
|
|
|
|
|
('Marco', 'Bianchi', 'marco.bianchi@azienda.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'DIPENDENTE'),
|
|
|
|
|
|
('Anna', 'Verdi', 'anna.verdi@azienda.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'DIPENDENTE');
|