1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // <auto-generated />
- using System;
- using MTWorkHR.Infrastructure.Data;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Infrastructure;
- using Microsoft.EntityFrameworkCore.Metadata;
- using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
- #nullable disable
- namespace MTWorkHR.Infrastructure.Migrations
- {
- [DbContext(typeof(HRDataContext))]
- partial class HRDataContextModelSnapshot : ModelSnapshot
- {
- protected override void BuildModel(ModelBuilder modelBuilder)
- {
- #pragma warning disable 612, 618
- modelBuilder
- .HasAnnotation("ProductVersion", "8.0.1")
- .HasAnnotation("Relational:MaxIdentifierLength", 128);
- SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
- modelBuilder.Entity("MTWorkHR.Core.Entities.Company", b =>
- {
- b.Property<long>("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("bigint")
- .HasColumnOrder(0);
- SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
- b.Property<string>("CRNumber")
- .IsRequired()
- .HasColumnType("nvarchar(max)");
- b.Property<string>("CompanyName")
- .IsRequired()
- .HasColumnType("nvarchar(max)");
- b.Property<DateTime>("CreateDate")
- .HasColumnType("datetime2")
- .HasColumnOrder(3);
- b.Property<string>("CreateUser")
- .HasMaxLength(450)
- .HasColumnType("nvarchar(450)")
- .HasColumnOrder(1);
- b.Property<bool>("IsDeleted")
- .HasColumnType("bit");
- b.Property<decimal>("TaxNumber")
- .HasColumnType("decimal(18,2)");
- b.Property<DateTime?>("UpdateDate")
- .HasColumnType("datetime2")
- .HasColumnOrder(4);
- b.Property<string>("UpdateUser")
- .HasMaxLength(450)
- .HasColumnType("nvarchar(450)")
- .HasColumnOrder(2);
- b.Property<long>("UserId")
- .HasColumnType("bigint");
- b.HasKey("Id");
- b.ToTable("Companies");
- });
- #pragma warning restore 612, 618
- }
- }
- }
|