esameits24-26backend/initdb/02_seed.sql
AV77web 53509490f3
All checks were successful
Deploy to VPS / build (push) Successful in 15s
Deploy to VPS / deploy (push) Successful in 18s
modifica a 01_schema.sql e 02_seed.sql uguale all'app corrieri
2026-07-12 18:17:31 +02:00

18 lines
No EOL
1.1 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- ============================================================
-- 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@corrieri.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Amministratore'),
('Maria', 'Bianchi', 'maria.bianchi@corrieri.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore'),
('Luca', 'Conti', 'luca.conti@corrieri.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'Operatore');ZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', 'DIPENDENTE');