mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
21 lines
661 B
C#
21 lines
661 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace RomRepoMgr.Database.Migrations
|
|
{
|
|
public partial class AddRomSetCategory : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>("Category", "RomSets", nullable: true);
|
|
|
|
migrationBuilder.CreateIndex("IX_RomSets_Category", "RomSets", "Category");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex("IX_RomSets_Category", "RomSets");
|
|
|
|
migrationBuilder.DropColumn("Category", "RomSets");
|
|
}
|
|
}
|
|
} |