using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace API.Migrations
{
///
public partial class dev1303255 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "DependsOnJobsIds",
table: "Jobs",
type: "text[]",
maxLength: 64,
nullable: true,
oldClrType: typeof(string[]),
oldType: "text[]",
oldMaxLength: 64);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "DependsOnJobsIds",
table: "Jobs",
type: "text[]",
maxLength: 64,
nullable: false,
defaultValue: new string[0],
oldClrType: typeof(string[]),
oldType: "text[]",
oldMaxLength: 64,
oldNullable: true);
}
}
}