// using CC.Yi.Model; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace CC.Yi.Model.Migrations { [DbContext(typeof(DataContext))] [Migration("20210602114758_yi1")] partial class yi1 { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "5.0.6"); modelBuilder.Entity("CC.Yi.Model.student", b => { b.Property("id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("name") .HasColumnType("TEXT"); b.HasKey("id"); b.ToTable("student"); }); #pragma warning restore 612, 618 } } }