using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace MyOffice.Migrations.Postgres.Migrations
{
///
public partial class MotionPrec : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "AmountMinus",
table: "AccountMotions",
type: "numeric(6)",
precision: 6,
nullable: false,
oldClrType: typeof(decimal),
oldType: "numeric");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "AmountMinus",
table: "AccountMotions",
type: "numeric",
nullable: false,
oldClrType: typeof(decimal),
oldType: "numeric(6)",
oldPrecision: 6);
}
}
}