mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace Bit.MySqlMigrations.Migrations;
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class AddAuthTableIndexes : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_SsoUser_OrganizationId_ExternalId",
|
|||
|
table: "SsoUser",
|
|||
|
columns: new[] { "OrganizationId", "ExternalId" },
|
|||
|
unique: true);
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_SsoUser_OrganizationId_UserId",
|
|||
|
table: "SsoUser",
|
|||
|
columns: new[] { "OrganizationId", "UserId" },
|
|||
|
unique: true);
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_Grant_ExpirationDate",
|
|||
|
table: "Grant",
|
|||
|
column: "ExpirationDate");
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropIndex(
|
|||
|
name: "IX_SsoUser_OrganizationId_ExternalId",
|
|||
|
table: "SsoUser");
|
|||
|
|
|||
|
migrationBuilder.DropIndex(
|
|||
|
name: "IX_SsoUser_OrganizationId_UserId",
|
|||
|
table: "SsoUser");
|
|||
|
|
|||
|
migrationBuilder.DropIndex(
|
|||
|
name: "IX_Grant_ExpirationDate",
|
|||
|
table: "Grant");
|
|||
|
}
|
|||
|
}
|