| 12345678910111213141516171819202122232425262728293031323334353637 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace WCS.Service.Migrations
- {
- public partial class 倒库 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "DEVICEDL",
- table: "WCS_TASK",
- type: "nvarchar(20)",
- maxLength: 20,
- nullable: true);
- migrationBuilder.AddColumn<string>(
- name: "TUNNELDL",
- table: "WCS_TASK",
- type: "nvarchar(10)",
- maxLength: 10,
- nullable: true);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "DEVICEDL",
- table: "WCS_TASK");
- migrationBuilder.DropColumn(
- name: "TUNNELDL",
- table: "WCS_TASK");
- }
- }
- }
|