This commit is contained in:
2026-07-27 08:59:02 +08:00 Unverified
parent 22321abe23
commit 2f5c6af37c
12 changed files with 6281 additions and 212 deletions
@@ -714,6 +714,24 @@ namespace Jiaowu.Api.Infrastructure.Persistence.Migrations.MySql
b.Property<Guid?>("ReviewedByUserId")
.HasColumnType("char(36)");
b.Property<Guid?>("SourceClassroomId")
.HasColumnType("char(36)");
b.Property<DateTime?>("SourceDate")
.HasColumnType("date");
b.Property<int?>("SourcePeriodCount")
.HasColumnType("int");
b.Property<Guid?>("SourceScheduleEntryId")
.HasColumnType("char(36)");
b.Property<int?>("SourceStartPeriod")
.HasColumnType("int");
b.Property<int?>("SourceWeek")
.HasColumnType("int");
b.Property<int?>("StartPeriod")
.HasColumnType("int");
@@ -746,6 +764,8 @@ namespace Jiaowu.Api.Infrastructure.Persistence.Migrations.MySql
b.HasIndex("SubstituteTeacherId");
b.HasIndex("SourceScheduleEntryId", "SourceWeek");
b.HasIndex("Status", "CreatedAt");
b.HasIndex("TeachingTaskId", "Status");
@@ -3473,10 +3493,10 @@ namespace Jiaowu.Api.Infrastructure.Persistence.Migrations.MySql
b.HasIndex("JobKind", "JobId")
.IsUnique();
b.HasIndex("State", "CreatedAt");
b.HasIndex("State", "CompletedAt");
b.HasIndex("State", "CreatedAt");
b.ToTable("BackgroundJobOutboxMessages");
});