mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
36 lines
1018 B
C#
36 lines
1018 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace osu.Game.Migrations
|
|
{
|
|
public partial class AddRulesetInfoShortName : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "ShortName",
|
|
table: "RulesetInfo",
|
|
type: "TEXT",
|
|
nullable: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_RulesetInfo_ShortName",
|
|
table: "RulesetInfo",
|
|
column: "ShortName",
|
|
unique: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_RulesetInfo_ShortName",
|
|
table: "RulesetInfo");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "ShortName",
|
|
table: "RulesetInfo");
|
|
}
|
|
}
|
|
}
|