using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Infrastructure; #nullable disable namespace Iceshrimp.Backend.Core.Database.Migrations { /// [DbContext(typeof(DatabaseContext))] [Migration("20240304000222_RemoveCwLengthRestriction")] 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); } } }