Knocks/BackEnd/Knoks.Operate/Tables/HttpRequests.sql

9 lines
288 B
SQL

Create Table HttpRequests
(
HttpRequestId BIGINT NOT NULL Identity(1,1),
HttpRequestInfo NVARCHAR(MAX) NOT NULL,
CreateDate DATETIME2 NOT NULL Constraint [DF_HttpRequests_CreateDate] default(GetUTCDate())
,CONSTRAINT [PK_HttpRequests] Primary Key Clustered
(HttpRequestId)
)