2019-07-08 01:25:59 +08: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 15:44:23 +08:00
|
|
|
|
table: "BeatmapInfo",
|
2019-07-08 01:25:59 +08: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 15:44:23 +08:00
|
|
|
|
table: "BeatmapInfo");
|
2019-07-08 01:25:59 +08:00
|
|
|
|
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "Length",
|
|
|
|
|
table: "BeatmapInfo");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|