Update Users to user; syntax

This commit is contained in:
aruhani
2025-03-18 14:19:54 -06:00
parent b8ca0fe4f2
commit 34ac68564c

View File

@@ -14,7 +14,7 @@ CREATE TABLE UserRole (
Client BOOLEAN DEFAULT True,
Admin BOOLEAN DEFAULT FALSE,
PRIMARY KEY (UserID),
FOREIGN KEY (UserID) REFERENCES Users (UserID) ON DELETE CASCADE
FOREIGN KEY (UserID) REFERENCES User (UserID) ON DELETE CASCADE
);
-- Product Entity