mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
23 lines
645 B
C#
23 lines
645 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Bit.PostgresMigrations.Migrations;
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class FixPasswordHealthReportApplication : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
// this file is not required, but the designer file is required
|
|||
|
// in order to keep the database models in sync with the database
|
|||
|
// without this - the unit tests will fail when run on your local machine
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|