18 lines
No EOL
1.1 KiB
SQL
18 lines
No EOL
1.1 KiB
SQL
-- ============================================================
|
||
-- 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)
|
||
-- ============================================================
|
||
|
||
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');ZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'DIPENDENTE'); |