Add audit table.

This commit is contained in:
2020-06-09 22:23:17 +01:00
parent af07f790fd
commit c6941d1450
7 changed files with 4279 additions and 1 deletions

View File

@@ -494,4 +494,10 @@ namespace Marechai.Database
{
Normal = 0, Low = 1, High = 2
}
public enum AuditType : byte
{
None = 0, Created = 1, Updated = 2,
Deleted = 3
}
}