From 2d71adc67c9ecfeef8eb11cebd5cd5c9042c57a1 Mon Sep 17 00:00:00 2001 From: Andrea Fiorencis Date: Wed, 18 Mar 2026 10:43:54 +0100 Subject: [PATCH] Aggiunta tabella Products base --- base_db.sql | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/base_db.sql b/base_db.sql index 8702131..e9e42c7 100644 --- a/base_db.sql +++ b/base_db.sql @@ -8,4 +8,10 @@ CREATE TABLE Users( Name VARCHAR(32), Email VARCHAR(256), Password VARCHAR(255) +); + +CREATE TABLE Products( + ProductID INTEGER PRIMARY_KEY AUTO_INCREMENT, + ProductName VARCHAR(104), + Price NUMERIC ); \ No newline at end of file