feat: add Auditable attribute to Chat entity and create migration
Added [Auditable] attribute to the Chat entity to enable auditing functionality. Created a new migration (AddAuditableToChat) that adds InsertTime, IsRemoved, and RemoveTime columns to the Chat table, along with the necessary database schema updates to support the auditing behavior.
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace Complex.Domain.Entities
|
||||
{
|
||||
[Auditable]
|
||||
public class Chat:BaseEntity<long>
|
||||
{
|
||||
public Guid ComplexId { set; get; }
|
||||
|
||||
Reference in New Issue
Block a user