| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Business.Migrations.BusinessExtMigrationDb
- {
- public partial class AddIsProduce : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "FIsAsset",
- table: "in_kd_material",
- type: "varchar(1)",
- maxLength: 1,
- nullable: true,
- comment: "允许资产")
- .Annotation("MySql:CharSet", "utf8mb4");
- migrationBuilder.AddColumn<string>(
- name: "FIsProduce",
- table: "in_kd_material",
- type: "varchar(1)",
- maxLength: 1,
- nullable: true,
- comment: "FIsProduce")
- .Annotation("MySql:CharSet", "utf8mb4");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "FIsAsset",
- table: "in_kd_material");
- migrationBuilder.DropColumn(
- name: "FIsProduce",
- table: "in_kd_material");
- }
- }
- }
|