using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace API.Migrations.Notifications { /// public partial class KeyLengthChange : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Key", table: "Notifications", type: "character varying(64)", maxLength: 64, nullable: false, oldClrType: typeof(string), oldType: "text"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Key", table: "Notifications", type: "text", nullable: false, oldClrType: typeof(string), oldType: "character varying(64)", oldMaxLength: 64); } } }