Skip to content

Commit

Permalink
Fixed issue serilog-mssql#541 in README.md
Browse files Browse the repository at this point in the history
The Timestamp column is nullable by default but the README.md stated the opposite. This was fixed now.
  • Loading branch information
ckadluba committed Sep 26, 2024
1 parent c1f7d85 commit 17b9e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ CREATE TABLE [Logs] (
[Message] nvarchar(max) NULL,
[MessageTemplate] nvarchar(max) NULL,
[Level] nvarchar(max) NULL,
[TimeStamp] datetime NOT NULL,
[TimeStamp] datetime NULL,
[Exception] nvarchar(max) NULL,
[Properties] nvarchar(max) NULL
Expand Down

0 comments on commit 17b9e1c

Please sign in to comment.