using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace GestorFacturas.API.Migrations { /// public partial class AddIsPersistentToRefreshToken : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsPersistent", table: "RefreshTokens", type: "bit", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsPersistent", table: "RefreshTokens"); } } }