mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
23 lines
622 B
C#
23 lines
622 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
namespace osu.Game.Migrations
|
|||
|
{
|
|||
|
public partial class AddSkinInstantiationInfo : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "InstantiationInfo",
|
|||
|
table: "SkinInfo",
|
|||
|
nullable: true);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "InstantiationInfo",
|
|||
|
table: "SkinInfo");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|