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