using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace SVSim.Database.Migrations
{
///
public partial class AddSocialAccountConnectionUniqueIndex : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateIndex(
name: "IX_SocialAccountConnection_AccountType_AccountId",
table: "SocialAccountConnection",
columns: new[] { "AccountType", "AccountId" },
unique: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropIndex(
name: "IX_SocialAccountConnection_AccountType_AccountId",
table: "SocialAccountConnection");
}
}
}