10 lines
610 B
MySQL
10 lines
610 B
MySQL
|
|
-- Eseguire manualmente su un database già esistente se gli utenti di test non sono presenti.
|
||
|
|
-- Password per tutti: Password123!
|
||
|
|
|
||
|
|
USE `esameits24-26`;
|
||
|
|
|
||
|
|
INSERT IGNORE 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');
|