Aggiornamento lato PERSONALE

This commit is contained in:
Emanuele Slusarz
2026-08-22 19:53:41 +02:00
parent 42979685fb
commit a121224899
4 changed files with 616 additions and 25 deletions
+7 -1
View File
@@ -88,7 +88,13 @@ CREATE TABLE ordine (
-- CREAZIONE RELAZIONE STATO ORDINE
CREATE TABLE statoOrdine (
idStatoOrdine INT PRIMARY KEY AUTO_INCREMENT NOT NULL,
nomeStato VARCHAR(30) NOT NULL,
nomeStato ENUM(
'inserito',
'in preparazione',
'pronto',
'in consegna',
'consegnato'
),
posizione TINYINT NOT NULL
);