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