Pannello gestione utenti/moduli

This commit is contained in:
cmaffio
2015-10-15 13:40:45 +02:00
parent 6c42d75681
commit 1bacc3232e
12 changed files with 284 additions and 144 deletions

18
utenti/out.txt Normal file
View File

@@ -0,0 +1,18 @@
INSERT INTO
permessi
SET
id_utenti = 2,
id_moduli = ( SELECT
id
FROM
moduli
WHERE
nome = 'Utenti' AND attivo = 1
),
accesso = 1,
modifica = NOW()
ON DUPLICATE KEY UPDATE
accesso = 1,
modifica = NOW()