Files
myoffice/MyOffice.Migration.Postgres/Migrations/20230429092104_currency_shortname.cs
T
2023-06-17 14:16:09 +03:00

30 lines
784 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace MyOffice.Migrations.Postgres.Migrations
{
/// <inheritdoc />
public partial class currencyshortname : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ShortName",
table: "Currencies");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ShortName",
table: "Currencies",
type: "text",
nullable: false,
defaultValue: "");
}
}
}