| 1234567891011121314151617181920212223 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace GreenTree.Strohrmann.ERP.Domain.Migrations
- {
- public partial class CraftMaterial_Hotfix : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<decimal>(
- name: "Value",
- table: "CraftMaterials",
- nullable: false,
- defaultValue: 0m);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "Value",
- table: "CraftMaterials");
- }
- }
- }
|