1234567891011121314151617181920212223242526 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace WCS.Service.Migrations
- {
- public partial class agvtask新增货物数量 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<int>(
- name: "Goodsnum",
- table: "WCS_AGVTask",
- type: "int",
- nullable: false,
- defaultValue: 0);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "Goodsnum",
- table: "WCS_AGVTask");
- }
- }
- }
|