DD.WellWorkover.Cloud/AsbCloudDb/Migrations/20230220100934_Enable_nullable_on_daylyReport.cs
2023-02-20 15:28:35 +05:00

38 lines
1.3 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace AsbCloudDb.Migrations
{
public partial class Enable_nullable_on_daylyReport : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "info",
table: "t_daily_report",
type: "jsonb",
nullable: false,
defaultValue: "{}",
comment: "Список параметров для отчёта",
oldClrType: typeof(string),
oldType: "jsonb",
oldNullable: true,
oldComment: "Список параметров для отчёта");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "info",
table: "t_daily_report",
type: "jsonb",
nullable: true,
comment: "Список параметров для отчёта",
oldClrType: typeof(string),
oldType: "jsonb",
oldComment: "Список параметров для отчёта");
}
}
}