mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 23:58:08 -05:00
update for database provider specific migrations
fix issues with live radar
This commit is contained in:
@ -0,0 +1,32 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace SharedLibraryCore.Migrations.MySql
|
||||
{
|
||||
public partial class AddSearchNameToEFAlias : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "SearchableName",
|
||||
table: "EFAlias",
|
||||
maxLength: 24,
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_EFAlias_SearchableName",
|
||||
table: "EFAlias",
|
||||
column: "SearchableName");
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_EFAlias_SearchableName",
|
||||
table: "EFAlias");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "SearchableName",
|
||||
table: "EFAlias");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user