using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Jiaowu.Api.Infrastructure.Persistence.Migrations.MySql { /// public partial class MessageRichContent : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Content", table: "Notifications", type: "longtext", nullable: false, oldClrType: typeof(string), oldType: "varchar(1000)", oldMaxLength: 1000); migrationBuilder.AlterColumn( name: "Content", table: "MessageDispatches", type: "longtext", nullable: false, oldClrType: typeof(string), oldType: "varchar(1000)", oldMaxLength: 1000); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Content", table: "Notifications", type: "varchar(1000)", maxLength: 1000, nullable: false, oldClrType: typeof(string), oldType: "longtext"); migrationBuilder.AlterColumn( name: "Content", table: "MessageDispatches", type: "varchar(1000)", maxLength: 1000, nullable: false, oldClrType: typeof(string), oldType: "longtext"); } } }