📄
MatDenDagen/Infrastructure/Storage/Database/Migrations/20260504182253_AddNotificationMinutesOffsetToParticipant.cs
using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MatDenDagen.Infrastructure.Storage.Database.Migrations { /// <inheritdoc /> public partial class AddNotificationMinutesOffsetToParticipant : Migration { /// <inheritdoc /> protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<int>( name: "NotificationMinutesOffset", table: "Participants", type: "INTEGER", nullable: true ); } /// <inheritdoc /> protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn(name: "NotificationMinutesOffset", table: "Participants"); } } }