using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace song_of_the_day.DataMigrations { /// public partial class somemoremodelupdates : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Provider", table: "Songs", type: "integer", nullable: true); migrationBuilder.AddColumn( name: "SpotifyId", table: "Songs", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Provider", table: "Songs"); migrationBuilder.DropColumn( name: "SpotifyId", table: "Songs"); } } }