using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Nuuru.Server.Migrations.PostgreSQL { /// public partial class ExtendTagNameLength : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Name", table: "BooruTags", type: "character varying(250)", maxLength: 250, nullable: false, oldClrType: typeof(string), oldType: "character varying(100)", oldMaxLength: 100); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Name", table: "BooruTags", type: "character varying(100)", maxLength: 100, nullable: false, oldClrType: typeof(string), oldType: "character varying(250)", oldMaxLength: 250); } } }