mirror of
https://codeberg.org/ThisIsMiseryy/techstore
synced 2026-03-29 20:21:20 +00:00
Aggiunta parametri in tabella Products
This commit is contained in:
@@ -13,7 +13,11 @@ CREATE TABLE Users(
|
|||||||
CREATE TABLE Products(
|
CREATE TABLE Products(
|
||||||
ProductID INTEGER PRIMARY KEY AUTO_INCREMENT,
|
ProductID INTEGER PRIMARY KEY AUTO_INCREMENT,
|
||||||
ProductName VARCHAR(104),
|
ProductName VARCHAR(104),
|
||||||
Price NUMERIC
|
Description TEXT,
|
||||||
|
Category VARCHAR(50),
|
||||||
|
Price NUMERIC,
|
||||||
|
ImagePath VARCHAR(255),
|
||||||
|
StockQuantity INT DEFAULT 0
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE Orders(
|
CREATE TABLE Orders(
|
||||||
|
|||||||
Reference in New Issue
Block a user