12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- // <auto-generated />
- using System;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Infrastructure;
- using Microsoft.EntityFrameworkCore.Migrations;
- using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
- using Repository;
- namespace Repository.Migrations
- {
- [DbContext(typeof(TeamDataContext))]
- [Migration("20230207162914_AddTable")]
- partial class AddTable
- {
- protected override void BuildTargetModel(ModelBuilder modelBuilder)
- {
- #pragma warning disable 612, 618
- modelBuilder
- .HasAnnotation("ProductVersion", "3.1.32");
- modelBuilder.Entity("Repository.Entiies.TestResult", b =>
- {
- b.Property<Guid>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("TEXT");
- b.Property<string>("Barcode")
- .HasColumnType("TEXT");
- b.Property<DateTime>("Datetime")
- .HasColumnType("TEXT");
- b.Property<int>("Juge")
- .HasColumnType("INTEGER");
- b.Property<double>("Result")
- .HasColumnType("REAL");
- b.HasKey("Id");
- b.ToTable("ProductResult");
- });
- #pragma warning restore 612, 618
- }
- }
- }
|