41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace WebAPI.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class LongerDesc1 : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Desc1",
|
|
table: "Records",
|
|
type: "nvarchar(max)",
|
|
maxLength: 10000,
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(1000)",
|
|
oldMaxLength: 1000,
|
|
oldNullable: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "Desc1",
|
|
table: "Records",
|
|
type: "nvarchar(1000)",
|
|
maxLength: 1000,
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldType: "nvarchar(max)",
|
|
oldMaxLength: 10000,
|
|
oldNullable: true);
|
|
}
|
|
}
|
|
}
|