using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.SqliteMigrations.Migrations; /// <inheritdoc /> public partial class AlterAuthRequestTable : Migration { /// <inheritdoc /> protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<string>( name: "RequestCountryName", table: "AuthRequest", type: "TEXT", maxLength: 200, nullable: true); } /// <inheritdoc /> protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RequestCountryName", table: "AuthRequest"); } }