using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace GameDatabase.Migrations { /// public partial class AddUnlockedUraSongIdListToUserDatum : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "UnlockedUraSongIdList", table: "UserData", type: "TEXT", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "UnlockedUraSongIdList", table: "UserData"); } } }