DD.WellWorkover.Cloud/AsbCloudDb/Migrations/20211012044236_Remove_CompositeWell_id.cs

25 lines
675 B
C#
Raw Normal View History

2021-10-12 10:39:42 +05:00
using Microsoft.EntityFrameworkCore.Migrations;
namespace AsbCloudDb.Migrations
{
public partial class Remove_CompositeWell_id : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Id",
table: "t_сomposite_well");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "Id",
table: "t_сomposite_well",
type: "integer",
nullable: false,
defaultValue: 0);
}
}
}