Files
Backend-Api/CompanyManagment.EFCore/Migrations/20230413150855_removeContactInfoId.cs
2024-07-05 21:36:15 +03:30

30 lines
752 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace CompanyManagment.EFCore.Migrations
{
public partial class removeContactInfoId : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ContactInfoId",
table: "InstitutionContracts");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<long>(
name: "ContactInfoId",
table: "InstitutionContracts",
type: "bigint",
nullable: false,
defaultValue: 0L);
}
}
}