mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
d48fae1100
This reverts commit bb5b9458e8
.
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");
|
|
}
|
|
}
|
|
}
|