mirror of
https://github.com/osukey/osukey.git
synced 2025-05-02 04:07:22 +09:00
17 lines
422 B
C#
17 lines
422 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace osu.Game.Migrations
|
|
{
|
|
public partial class RefreshVolumeBindings : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.Sql("DELETE FROM KeyBinding WHERE action in (6,7)");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
}
|
|
}
|
|
}
|