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