Files
Backend-Api/CompanyManagment.EFCore/Migrations/20231025133513_descriptionMaxLenght.cs
2024-07-05 21:36:15 +03:30

41 lines
1.2 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace CompanyManagment.EFCore.Migrations
{
public partial class descriptionMaxLenght : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "Description",
table: "FinancialTransactions",
type: "nvarchar(600)",
maxLength: 600,
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(50)",
oldMaxLength: 50,
oldNullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "Description",
table: "FinancialTransactions",
type: "nvarchar(50)",
maxLength: 50,
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(600)",
oldMaxLength: 600,
oldNullable: true);
}
}
}