DD.WellWorkover.Cloud/AsbCloudDb/Migrations/20220531113336_Make_Driller_patronimic_nullable.cs

42 lines
1.3 KiB
C#
Raw Normal View History

2022-05-31 16:36:24 +05:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace AsbCloudDb.Migrations
{
public partial class Make_Driller_patronimic_nullable : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "patronymic",
table: "t_driller",
type: "character varying(255)",
maxLength: 255,
nullable: true,
comment: "Отчество",
oldClrType: typeof(string),
oldType: "character varying(255)",
oldMaxLength: 255,
oldComment: "Отчество");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "patronymic",
table: "t_driller",
type: "character varying(255)",
maxLength: 255,
nullable: false,
defaultValue: "",
comment: "Отчество",
oldClrType: typeof(string),
oldType: "character varying(255)",
oldMaxLength: 255,
oldNullable: true,
oldComment: "Отчество");
}
}
}