Files
SpotiParty/SpotiParty.Web/Migrations/20251130142549_Added Spotify Id.cs
2025-11-30 19:01:38 +01:00

31 lines
815 B
C#

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