using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CMSMicroservice.Infrastructure.Persistence.Migrations
{
///
public partial class AddIsActiveToUserClubFeatures : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "IsActive",
schema: "CMS",
table: "UserClubFeatures",
type: "bit",
nullable: false,
defaultValue: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsActive",
schema: "CMS",
table: "UserClubFeatures");
}
}
}