updating alerts ui/ux

This commit is contained in:
Mann Patel
2025-04-21 01:19:39 -06:00
parent 53686bd71d
commit 505f6cd134
4 changed files with 12 additions and 8 deletions

View File

@@ -79,7 +79,7 @@ CREATE TABLE Review (
-- Transaction Entity (Many-to-One with User, Many-to-One with Product)
CREATE TABLE Transaction (
TransactionID INT PRIMARY KEY,
TransactionID INT AUTO_INCREMENT PRIMARY KEY,
UserID INT,
ProductID INT,
Date DATETIME DEFAULT CURRENT_TIMESTAMP,