|
@@ -1,79 +0,0 @@
|
|
|
-
|
|
|
-using System;
|
|
|
-using MTWorkHR.Infrastructure.Data;
|
|
|
-using Microsoft.EntityFrameworkCore;
|
|
|
-using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
-using Microsoft.EntityFrameworkCore.Metadata;
|
|
|
-using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
-using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
-
|
|
|
-#nullable disable
|
|
|
-
|
|
|
-namespace MTWorkHR.Infrastructure.Migrations
|
|
|
-{
|
|
|
- [DbContext(typeof(HRDataContext))]
|
|
|
- [Migration("20240131192339_addCompany")]
|
|
|
- partial class addCompany
|
|
|
- {
|
|
|
-
|
|
|
- protected override void BuildTargetModel(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
|
|
|
- }
|
|
|
- }
|
|
|
-}
|