osukey/osu.Game/Migrations/20200103111200_AddPlayingVerb.cs
2020-01-03 11:39:15 +00:00

23 lines
606 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace osu.Game.Migrations
{
public partial class AddPlayingVerb : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "PlayingVerb",
table: "RulesetInfo",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PlayingVerb",
table: "RulesetInfo");
}
}
}