mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
bf4e039911
* [PM-131] Remove fingerprint (#2759) * [PM-107][PM-131] Remove fingerprint property from auth request * [PM-107][PM-131] Remove fingerprint property from comparer * [PM-132] Drop fingerprint phrase (#2803) * [PM-132] Added migrations to remove fingerprint phrase from db * [PM-132] Remove fp from stored procedures
25 lines
631 B
C#
25 lines
631 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.SqliteMigrations.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<string>(
|
|
name: "RequestFingerprint",
|
|
table: "AuthRequest",
|
|
type: "TEXT",
|
|
nullable: true);
|
|
}
|
|
}
|