39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace MyOffice.Migrations.Postgres.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class MotionPrec3 : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<decimal>(
|
|
name: "AmountPlus",
|
|
table: "AccountMotions",
|
|
type: "numeric(18,6)",
|
|
precision: 18,
|
|
scale: 6,
|
|
nullable: false,
|
|
oldClrType: typeof(decimal),
|
|
oldType: "numeric");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<decimal>(
|
|
name: "AmountPlus",
|
|
table: "AccountMotions",
|
|
type: "numeric",
|
|
nullable: false,
|
|
oldClrType: typeof(decimal),
|
|
oldType: "numeric(18,6)",
|
|
oldPrecision: 18,
|
|
oldScale: 6);
|
|
}
|
|
}
|
|
}
|