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

41 lines
1.1 KiB
C#

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