24 lines
714 B
C#
24 lines
714 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace KanSan.Base.Migrations
|
|
{
|
|
public partial class HatGüteschutzprotokoll : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "HatGueteschutzProtokol",
|
|
table: "LeistungsverzeichnisPositionen",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "HatGueteschutzProtokol",
|
|
table: "LeistungsverzeichnisPositionen");
|
|
}
|
|
}
|
|
}
|