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