|
|
|
@ -0,0 +1,68 @@
|
|
|
|
|
// <auto-generated />
|
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
using Volo.DocsTestApp.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace Volo.DocsTestApp.EntityFrameworkCore.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(DocsTestAppDbContext))]
|
|
|
|
|
[Migration("20181030125213_Added_Project_MinimumVersion")]
|
|
|
|
|
partial class Added_Project_MinimumVersion
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable 612, 618
|
|
|
|
|
modelBuilder
|
|
|
|
|
.HasAnnotation("ProductVersion", "2.1.4-rtm-31024")
|
|
|
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128)
|
|
|
|
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Volo.Docs.Projects.Project", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd();
|
|
|
|
|
|
|
|
|
|
b.Property<string>("DefaultDocumentName")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(128);
|
|
|
|
|
|
|
|
|
|
b.Property<string>("DocumentStoreType");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
|
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Format");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("GoogleCustomSearchId");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("LatestVersionBranchName")
|
|
|
|
|
.HasMaxLength(128);
|
|
|
|
|
|
|
|
|
|
b.Property<string>("MainWebsiteUrl");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("MinimumVersion");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(128);
|
|
|
|
|
|
|
|
|
|
b.Property<string>("NavigationDocumentName")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(128);
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ShortName")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(32);
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.ToTable("DocsProjects");
|
|
|
|
|
});
|
|
|
|
|
#pragma warning restore 612, 618
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|