20200726163658_CraftMaterial_Hotfix.cs 665 B

1234567891011121314151617181920212223
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace GreenTree.Strohrmann.ERP.Domain.Migrations
  3. {
  4. public partial class CraftMaterial_Hotfix : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.AddColumn<decimal>(
  9. name: "Value",
  10. table: "CraftMaterials",
  11. nullable: false,
  12. defaultValue: 0m);
  13. }
  14. protected override void Down(MigrationBuilder migrationBuilder)
  15. {
  16. migrationBuilder.DropColumn(
  17. name: "Value",
  18. table: "CraftMaterials");
  19. }
  20. }
  21. }