// using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Sample.RabbitMQ.MySql; namespace Sample.RabbitMQ.MySql.Migrations { [DbContext(typeof(AppDbContext))] [Migration("20180821021736_init")] partial class init { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "2.1.1-rtm-30846") .HasAnnotation("Relational:MaxIdentifierLength", 64); modelBuilder.Entity("Sample.RabbitMQ.MySql.Person", b => { b.Property("Id") .ValueGeneratedOnAdd(); b.Property("Name"); b.HasKey("Id"); b.ToTable("Persons"); }); #pragma warning restore 612, 618 } } }