mirror of https://github.com/abpframework/abp
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							70 lines
						
					
					
						
							2.4 KiB
						
					
					
				
			
		
		
	
	
							70 lines
						
					
					
						
							2.4 KiB
						
					
					
				| // <auto-generated />
 | |
| using System;
 | |
| using Microsoft.EntityFrameworkCore;
 | |
| using Microsoft.EntityFrameworkCore.Infrastructure;
 | |
| using Microsoft.EntityFrameworkCore.Metadata;
 | |
| using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
 | |
| using Volo.Abp.BackgroundJobs;
 | |
| using Volo.Abp.BackgroundJobs.DemoApp.Db;
 | |
| 
 | |
| namespace Volo.Abp.BackgroundJobs.DemoApp.Migrations
 | |
| {
 | |
|     [DbContext(typeof(DemoAppDbContext))]
 | |
|     partial class DemoAppDbContextModelSnapshot : ModelSnapshot
 | |
|     {
 | |
|         protected override void BuildModel(ModelBuilder modelBuilder)
 | |
|         {
 | |
| #pragma warning disable 612, 618
 | |
|             modelBuilder
 | |
|                 .HasAnnotation("ProductVersion", "2.1.0-rtm-30799")
 | |
|                 .HasAnnotation("Relational:MaxIdentifierLength", 128)
 | |
|                 .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
 | |
| 
 | |
|             modelBuilder.Entity("Volo.Abp.BackgroundJobs.BackgroundJobRecord", b =>
 | |
|                 {
 | |
|                     b.Property<Guid>("Id")
 | |
|                         .ValueGeneratedOnAdd();
 | |
| 
 | |
|                     b.Property<string>("ConcurrencyStamp");
 | |
| 
 | |
|                     b.Property<DateTime>("CreationTime")
 | |
|                         .HasColumnName("CreationTime");
 | |
| 
 | |
|                     b.Property<string>("ExtraProperties")
 | |
|                         .HasColumnName("ExtraProperties");
 | |
| 
 | |
|                     b.Property<bool>("IsAbandoned")
 | |
|                         .ValueGeneratedOnAdd()
 | |
|                         .HasDefaultValue(false);
 | |
| 
 | |
|                     b.Property<string>("JobArgs")
 | |
|                         .IsRequired()
 | |
|                         .HasMaxLength(1048576);
 | |
| 
 | |
|                     b.Property<string>("JobName")
 | |
|                         .IsRequired()
 | |
|                         .HasMaxLength(128);
 | |
| 
 | |
|                     b.Property<DateTime?>("LastTryTime");
 | |
| 
 | |
|                     b.Property<DateTime>("NextTryTime");
 | |
| 
 | |
|                     b.Property<byte>("Priority")
 | |
|                         .ValueGeneratedOnAdd()
 | |
|                         .HasDefaultValue((byte)15);
 | |
| 
 | |
|                     b.Property<short>("TryCount")
 | |
|                         .ValueGeneratedOnAdd()
 | |
|                         .HasDefaultValue((short)0);
 | |
| 
 | |
|                     b.HasKey("Id");
 | |
| 
 | |
|                     b.HasIndex("IsAbandoned", "NextTryTime");
 | |
| 
 | |
|                     b.ToTable("AbpBackgroundJobs");
 | |
|                 });
 | |
| #pragma warning restore 612, 618
 | |
|         }
 | |
|     }
 | |
| }
 |