vassago/Migrations/20250620230813_TranslatedMessages.cs
adam 92988257b6
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
localizations. command aliases.
see #19. see #9.
2025-06-20 20:09:44 -04:00

29 lines
741 B
C#

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