mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 03:17:39 +08:00
24 lines
698 B
C#
24 lines
698 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace osu.Game.Migrations
|
|
{
|
|
public partial class AddBeatmapOnlineIDUniqueConstraint : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_BeatmapInfo_OnlineBeatmapID",
|
|
table: "BeatmapInfo",
|
|
column: "OnlineBeatmapID",
|
|
unique: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_BeatmapInfo_OnlineBeatmapID",
|
|
table: "BeatmapInfo");
|
|
}
|
|
}
|
|
}
|