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