using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace SpotiParty.Web.Migrations { /// public partial class AddedSpotifyId : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "SpotifyUserId", table: "Users", type: "character varying(255)", maxLength: 255, nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "SpotifyUserId", table: "Users"); } } }