using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Nuuru.Server.Migrations.PostgreSQL { /// public partial class AddNotificationForumCategorySlug : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RelatedForumCategorySlug", table: "Notifications", type: "character varying(100)", maxLength: 100, nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RelatedForumCategorySlug", table: "Notifications"); } } }