using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.PostgresMigrations.Migrations; public partial class AuthRequestRemoveFingerprintPhrase : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RequestFingerprint", table: "AuthRequest"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RequestFingerprint", table: "AuthRequest", type: "text", nullable: true); } }