using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DeepDrftData.Migrations { /// public partial class AddReleaseDescription : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "description", table: "release", type: "character varying(4000)", maxLength: 4000, nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "description", table: "release"); } } }