feat(dal,api): в таблицу Tnk, добавлено поле ShortName
This commit is contained in:
56
PARR.DAL/Migrations/20251208235159_tblTnkAddShortName.cs
Normal file
56
PARR.DAL/Migrations/20251208235159_tblTnkAddShortName.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace PARR.DAL.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class tblTnkAddShortName : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_Tnks_EsppId",
|
||||
table: "Tnks");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "EsppId",
|
||||
table: "Tnks",
|
||||
type: "integer",
|
||||
nullable: true,
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer");
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "ShortName",
|
||||
table: "Tnks",
|
||||
type: "text",
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "ShortName",
|
||||
table: "Tnks");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "EsppId",
|
||||
table: "Tnks",
|
||||
type: "integer",
|
||||
nullable: false,
|
||||
defaultValue: 0,
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer",
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Tnks_EsppId",
|
||||
table: "Tnks",
|
||||
column: "EsppId",
|
||||
unique: true);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user