using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace EchoHub.Server.Data.Migrations { /// public partial class AddAttachmentFileSize : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AttachmentFileSize", table: "Messages", type: "INTEGER", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AttachmentFileSize", table: "Messages"); } } }