using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Hutopy.Web.Features.Contents.Migrations { /// public partial class AddHtmlFileUrl : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "HtmlFileUrl", schema: "Content", table: "Contents", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "HtmlFileUrl", schema: "Content", table: "Contents"); } } }