1234567891011121314151617181920212223242526272829303132333435 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace WCS.Service.Migrations
- {
- public partial class _7291 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<int>(
- name: "DOCID",
- table: "WCS_TASK",
- type: "int",
- nullable: false,
- defaultValue: 0);
- migrationBuilder.AddColumn<int>(
- name: "DocId",
- table: "WCS_RobotStation",
- type: "int",
- nullable: false,
- defaultValue: 0);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "DOCID",
- table: "WCS_TASK");
- migrationBuilder.DropColumn(
- name: "DocId",
- table: "WCS_RobotStation");
- }
- }
- }
|