using System; using Microsoft.EntityFrameworkCore.Migrations; namespace Volo.CmsKit.Migrations { public partial class Reaction_Comment_Multitenancy : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "TenantId", table: "CmsUserReactions", nullable: true); migrationBuilder.AddColumn( name: "TenantId", table: "CmsComments", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "TenantId", table: "CmsUserReactions"); migrationBuilder.DropColumn( name: "TenantId", table: "CmsComments"); } } }