osu/osu.Game/Migrations/20190708070844_AddBPMAndLen...

34 lines
935 B
C#
Raw Normal View History

2019-07-07 17:25:59 +00:00
using Microsoft.EntityFrameworkCore.Migrations;
namespace osu.Game.Migrations
{
public partial class AddBPMAndLengthColumns : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<double>(
name: "BPM",
2019-07-08 07:44:23 +00:00
table: "BeatmapInfo",
2019-07-07 17:25:59 +00:00
nullable: false,
defaultValue: 0.0);
migrationBuilder.AddColumn<double>(
name: "Length",
table: "BeatmapInfo",
nullable: false,
defaultValue: 0.0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "BPM",
2019-07-08 07:44:23 +00:00
table: "BeatmapInfo");
2019-07-07 17:25:59 +00:00
migrationBuilder.DropColumn(
name: "Length",
table: "BeatmapInfo");
}
}
}