mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
bb3a9daf98
* Init ClientSecret migration * Fix unit tests * Move to src/Sql/dbo_future * Formatting changes * Update migration date for next release * Swap to just executing sp_refreshview * Fix formatting * Add EF Migrations * Rename to ClientSecretHash * Fix unit test * EF column rename * Batch the migration * Fix formatting * Add deprecation notice to property * Move data migration * Swap to CREATE OR ALTER
37 lines
956 B
C#
37 lines
956 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.PostgresMigrations.Migrations;
|
|
|
|
public partial class ClientSecretHash : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ClientSecret",
|
|
table: "ApiKey");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "ClientSecretHash",
|
|
table: "ApiKey",
|
|
type: "character varying(128)",
|
|
maxLength: 128,
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ClientSecretHash",
|
|
table: "ApiKey");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "ClientSecret",
|
|
table: "ApiKey",
|
|
type: "character varying(30)",
|
|
maxLength: 30,
|
|
nullable: true);
|
|
}
|
|
}
|