Files
hermes/WebApp/Migrations/20250602005444_EventImageURL.cs
eee4 f7583738d7 feat: image url migration
registrations can now store image urls, which will be shown at view.html
2025-06-02 03:01:10 +02:00

29 lines
713 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace WebApp.Migrations
{
/// <inheritdoc />
public partial class EventImageURL : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ImageURL",
table: "Events",
type: "text",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ImageURL",
table: "Events");
}
}
}