mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
tweaked logging tests.
This commit is contained in:
parent
22bbf83e42
commit
ccba527e89
4 changed files with 26 additions and 4 deletions
|
@ -151,11 +151,11 @@ namespace NzbDrone.Core.Datastore.Migration
|
|||
protected override void LogDbUpgrade()
|
||||
{
|
||||
Create.Table("Logs")
|
||||
.WithColumn("LogId").AsInt64().PrimaryKey().Identity()
|
||||
.WithColumn("Id").AsInt32().PrimaryKey().Identity()
|
||||
.WithColumn("Message").AsString().NotNullable()
|
||||
.WithColumn("Time").AsDateTime().NotNullable()
|
||||
.WithColumn("Logger").AsString().NotNullable()
|
||||
.WithColumn("Method").AsString().NotNullable()
|
||||
.WithColumn("Method").AsString().Nullable()
|
||||
.WithColumn("Exception").AsString().Nullable()
|
||||
.WithColumn("ExceptionType").AsString().Nullable()
|
||||
.WithColumn("Level").AsString().NotNullable();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue