Set size for company description.

This commit is contained in:
2019-05-18 17:49:44 +01:00
parent f5db8bbbff
commit 16c7dc0c38
5 changed files with 3339 additions and 713 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,19 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace Cicm.Database.Migrations
{
public partial class AnnotateCompanyDescription : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>("Text", "CompanyDescriptions", maxLength: 262144, nullable: true,
oldClrType: typeof(string), oldNullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>("Text", "CompanyDescriptions", nullable: true,
oldClrType: typeof(string), oldMaxLength: 262144, oldNullable: true);
}
}
}

File diff suppressed because it is too large Load Diff