| | |
| | | b.ToTable("QueueLog"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.ScheduleJobTriggerTimeline", b => |
| | | { |
| | | b.Property<Guid>("Id") |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<Guid?>("CreatedEnterpriseId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<DateTimeOffset>("CreatedTime") |
| | | .HasColumnType("datetimeoffset"); |
| | | |
| | | b.Property<Guid?>("CreatedUserId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<long>("ElapsedTime") |
| | | .HasColumnType("bigint"); |
| | | |
| | | b.Property<string>("Exception") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | | |
| | | b.Property<string>("JobId") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<DateTime?>("LastRunTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<int>("Mode") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime?>("NextRunTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<long>("NumberOfRuns") |
| | | .HasColumnType("bigint"); |
| | | |
| | | b.Property<string>("Result") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<long>("Status") |
| | | .HasColumnType("bigint"); |
| | | |
| | | b.Property<string>("TraceId") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("TriggerId") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<DateTimeOffset?>("UpdatedTime") |
| | | .HasColumnType("datetimeoffset"); |
| | | |
| | | b.Property<Guid?>("UpdatedUserId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.HasKey("Id"); |
| | | |
| | | b.ToTable("ScheduleJobTriggerTimeline"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.SmsLog", b => |
| | | { |
| | | b.Property<Guid>("Id") |