mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
24 lines
1014 B
C#
24 lines
1014 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using osu.Game.Database;
|
|
using osu.Game.Input.Bindings;
|
|
|
|
namespace osu.Game.Migrations
|
|
{
|
|
[DbContext(typeof(OsuDbContext))]
|
|
[Migration("20180131154205_AddMuteBinding")]
|
|
public partial class AddMuteBinding : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.Sql($"UPDATE KeyBinding SET Action = Action + 1 WHERE RulesetID IS NULL AND Variant IS NULL AND Action >= {(int)GlobalAction.ToggleMute}");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.Sql($"DELETE FROM KeyBinding WHERE RulesetID IS NULL AND Variant IS NULL AND Action = {(int)GlobalAction.ToggleMute}");
|
|
migrationBuilder.Sql($"UPDATE KeyBinding SET Action = Action - 1 WHERE RulesetID IS NULL AND Variant IS NULL AND Action > {(int)GlobalAction.ToggleMute}");
|
|
}
|
|
}
|
|
}
|