18 lines
828 B
SQL
18 lines
828 B
SQL
-- ============================================================
|
||
-- Dati iniziali di test – esameits24-26
|
||
-- Password per tutti gli utenti: Password123!
|
||
--
|
||
-- Operatori:
|
||
-- 1 Andrea Villari – admin@centro.it (Admin)
|
||
-- 2 Maria Bianchi – maria.bianchi@centro.it (operatore)
|
||
--
|
||
-- ============================================================
|
||
|
||
USE prenotazioni;
|
||
|
||
-- ------------------------------------------------------------
|
||
-- Operatori
|
||
-- ------------------------------------------------------------
|
||
INSERT INTO operatore (Nome, Cognome, Email, PasswordHash, Admin) VALUES
|
||
('Andrea', 'Villari', 'admin@centro.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', TRUE),
|
||
('Maria', 'Bianchi', 'maria.bianchi@centro.it', '$2b$10$7Z80qZcDydZCdLrOcaH/VOa9knKWjQVyyg8MtEgBAvgfNMsiLEZze', FALSE);
|