mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
23
osu.Game/Migrations/20210824185035_AddCountdownSettings.cs
Normal file
23
osu.Game/Migrations/20210824185035_AddCountdownSettings.cs
Normal file
@ -0,0 +1,23 @@
|
||||
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");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user