Browse Source

EF迁移

pull/1/head
mahao 1 year ago
parent
commit
a1ab64ee98
  1. 3735
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.Designer.cs
  2. 1426
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.cs
  3. 3744
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710062137_20230710-1.Designer.cs
  4. 63
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710062137_20230710-1.cs
  5. 3742
      code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs

3735
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.Designer.cs

File diff suppressed because it is too large

1426
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710050546_init.cs

File diff suppressed because it is too large

3744
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710062137_20230710-1.Designer.cs

File diff suppressed because it is too large

63
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/20230710062137_20230710-1.cs

@ -0,0 +1,63 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace Win.Sfs.SettleAccount.Migrations
{
public partial class _202307101 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "EndDate",
table: "Set_PriceList",
newName: "EndTime");
migrationBuilder.RenameColumn(
name: "BeginDate",
table: "Set_PriceList",
newName: "BeginTime");
migrationBuilder.AddColumn<string>(
name: "BusinessType",
table: "Set_PriceList",
type: "nvarchar(max)",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "ClientCode",
table: "Set_PriceList",
type: "nvarchar(max)",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "LU",
table: "Set_PriceList",
type: "nvarchar(max)",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "BusinessType",
table: "Set_PriceList");
migrationBuilder.DropColumn(
name: "ClientCode",
table: "Set_PriceList");
migrationBuilder.DropColumn(
name: "LU",
table: "Set_PriceList");
migrationBuilder.RenameColumn(
name: "EndTime",
table: "Set_PriceList",
newName: "EndDate");
migrationBuilder.RenameColumn(
name: "BeginTime",
table: "Set_PriceList",
newName: "BeginDate");
}
}
}

3742
code/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Migrations/SettleAccountDbContextModelSnapshot.cs

File diff suppressed because it is too large
Loading…
Cancel
Save