using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DaSaSo.EntityFramework.Migrations { public partial class ProjectNumberAdded : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Projektnummer", table: "Projects", type: "text", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Projektnummer", table: "Projects"); } } }