update data testing

This commit is contained in:
Aaron Po
2025-11-11 06:02:45 -05:00
parent 33db1368ec
commit f0c9cff8be
3 changed files with 228 additions and 583 deletions

View File

@@ -35,7 +35,8 @@ CREATE TABLE UserAccount
Email VARCHAR(128) NOT NULL,
CreatedAt DATETIME NOT NULL,
CreatedAt DATETIME NOT NULL
CONSTRAINT DF_UserAccount_CreatedAt DEFAULT GETDATE(),
UpdatedAt DATETIME,
@@ -53,6 +54,7 @@ CREATE TABLE UserAccount
UNIQUE (Email),
);
----------------------------------------------------------------------------
----------------------------------------------------------------------------