using System;
using Microsoft.EntityFrameworkCore.Migrations;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace MyOffice.Migrations.Postgres.Migrations
{
///
public partial class MotionCategoryFix : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
/*migrationBuilder.AlterColumn(
name: "Id",
table: "AccountMotions",
type: "bigint",
nullable: false,
oldClrType: typeof(Guid),
oldType: "uuid")
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);*/
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
/*migrationBuilder.AlterColumn(
name: "Id",
table: "AccountMotions",
type: "uuid",
nullable: false,
oldClrType: typeof(long),
oldType: "bigint")
.OldAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);*/
}
}
}