20210423095233_2.cs 647 B

123456789101112131415161718192021222324
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace WCS.Service.Migrations
  3. {
  4. public partial class _2 : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.AddColumn<int>(
  9. name: "WCSVersion",
  10. table: "WCS_CMD",
  11. type: "int",
  12. nullable: false,
  13. defaultValue: 0);
  14. }
  15. protected override void Down(MigrationBuilder migrationBuilder)
  16. {
  17. migrationBuilder.DropColumn(
  18. name: "WCSVersion",
  19. table: "WCS_CMD");
  20. }
  21. }
  22. }