87 lines
3.0 KiB
C#
87 lines
3.0 KiB
C#
|
// <auto-generated />
|
|||
|
using System;
|
|||
|
using Birdmap.DAL;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
|
|||
|
namespace Birdmap.DAL.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(BirdmapContext))]
|
|||
|
[Migration("20201031145128_RemoveUserSeed")]
|
|||
|
partial class RemoveUserSeed
|
|||
|
{
|
|||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder
|
|||
|
.HasAnnotation("ProductVersion", "3.1.9")
|
|||
|
.HasAnnotation("Relational:MaxIdentifierLength", 128)
|
|||
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
modelBuilder.Entity("Birdmap.DAL.Entities.Service", b =>
|
|||
|
{
|
|||
|
b.Property<int>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int")
|
|||
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
b.Property<bool>("IsFromConfig")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("bit")
|
|||
|
.HasDefaultValue(false);
|
|||
|
|
|||
|
b.Property<string>("Name")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.Property<string>("Uri")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.ToTable("Services");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("Birdmap.DAL.Entities.User", b =>
|
|||
|
{
|
|||
|
b.Property<int>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int")
|
|||
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
|
|||
|
|
|||
|
b.Property<bool>("IsFromConfig")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("bit")
|
|||
|
.HasDefaultValue(false);
|
|||
|
|
|||
|
b.Property<string>("Name")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(450)");
|
|||
|
|
|||
|
b.Property<byte[]>("PasswordHash")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("varbinary(max)");
|
|||
|
|
|||
|
b.Property<byte[]>("PasswordSalt")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("varbinary(max)");
|
|||
|
|
|||
|
b.Property<int>("Role")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.HasIndex("Name")
|
|||
|
.IsUnique();
|
|||
|
|
|||
|
b.ToTable("Users");
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|