mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
24 lines
654 B
C#
24 lines
654 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
namespace osu.Game.Migrations
|
|||
|
{
|
|||
|
public partial class AddEpilepsyWarning : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<bool>(
|
|||
|
name: "EpilepsyWarning",
|
|||
|
table: "BeatmapInfo",
|
|||
|
nullable: false,
|
|||
|
defaultValue: false);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "EpilepsyWarning",
|
|||
|
table: "BeatmapInfo");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|