modifica alle password degli utenti nel file 02_seed.sql
This commit is contained in:
parent
3cefb1b407
commit
747365556f
1 changed files with 4 additions and 5 deletions
|
|
@ -1,10 +1,9 @@
|
||||||
-- ============================================================
|
-- ============================================================
|
||||||
-- Dati iniziali di test – esameits24-26
|
-- Dati iniziali di test – esameits24-26
|
||||||
-- Password per tutti gli utenti: Password123!
|
-- Password per tutti gli utenti: Password123!
|
||||||
-- 1 Andrea Villari – admin@azienda.it (responsabile)
|
-- 1 Andrea Villari – admin@example.it (amministratore)
|
||||||
-- 2 Mario Rossi – mario.rossi@azienda.it (dipendente)
|
-- 2 Maria Bianchi – maria.bianchi@example.it (operatore)
|
||||||
-- 3 Marco Bianchi – marco.bianchi@azienda.it (dipendente)
|
-- 3 Luca Conti – luca.conti@example.it (operatore)
|
||||||
-- 4 Anna Verdi – anna.verdi@azienda.it (dipendente)
|
|
||||||
-- ============================================================
|
-- ============================================================
|
||||||
|
|
||||||
USE `esameits24-26`;
|
USE `esameits24-26`;
|
||||||
|
|
@ -15,4 +14,4 @@ USE `esameits24-26`;
|
||||||
INSERT INTO utente (Nome, Cognome, Email, PasswordHash, Ruolo) VALUES
|
INSERT INTO utente (Nome, Cognome, Email, PasswordHash, Ruolo) VALUES
|
||||||
('Andrea', 'Villari', 'admin@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Amministratore'),
|
('Andrea', 'Villari', 'admin@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Amministratore'),
|
||||||
('Maria', 'Bianchi', 'maria.bianchi@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore'),
|
('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');
|
('Luca', 'Conti', 'luca.conti@example.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore');
|
||||||
Loading…
Add table
Reference in a new issue