using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Iceshrimp.Backend.Core.Database.Migrations { /// public partial class RemoveCwLengthRestriction : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "cw", table: "note", type: "text", nullable: true, oldClrType: typeof(string), oldType: "character varying(512)", oldMaxLength: 512, oldNullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "cw", table: "note", type: "character varying(512)", maxLength: 512, nullable: true, oldClrType: typeof(string), oldType: "text", oldNullable: true); } } }