ปรับปรุงการเก็บ log
This commit is contained in:
@@ -19,6 +19,45 @@ namespace tb320eva.Migrations
|
||||
.HasAnnotation("ProductVersion", "2.2.6-servicing-10079")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||
|
||||
modelBuilder.Entity("TodoAPI2.Models.activity_log_evaEntity", b =>
|
||||
{
|
||||
b.Property<int>("id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int?>("causer_id");
|
||||
|
||||
b.Property<string>("causer_type")
|
||||
.HasMaxLength(191);
|
||||
|
||||
b.Property<DateTime?>("created_at");
|
||||
|
||||
b.Property<string>("description")
|
||||
.HasMaxLength(4000);
|
||||
|
||||
b.Property<string>("ip_address")
|
||||
.HasMaxLength(191);
|
||||
|
||||
b.Property<string>("log_name")
|
||||
.HasMaxLength(191);
|
||||
|
||||
b.Property<string>("mac_address")
|
||||
.HasMaxLength(191);
|
||||
|
||||
b.Property<string>("properties")
|
||||
.HasMaxLength(8000);
|
||||
|
||||
b.Property<int?>("subject_id");
|
||||
|
||||
b.Property<string>("subject_type")
|
||||
.HasMaxLength(191);
|
||||
|
||||
b.Property<DateTime?>("updated_at");
|
||||
|
||||
b.HasKey("id");
|
||||
|
||||
b.ToTable("activity_log_eva");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("TodoAPI2.Models.eva_adjust_postponementEntity", b =>
|
||||
{
|
||||
b.Property<int>("id");
|
||||
|
||||
Reference in New Issue
Block a user