Skip to content

Commit

Permalink
VM-1422: index creation fails in initial migration MsSql
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-buravlev committed Jun 26, 2024
1 parent 997d61e commit 3d3f019
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;

#nullable disable
Expand All @@ -18,7 +17,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
{
Id = table.Column<string>(type: "varchar(128)", maxLength: 128, nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
Name = table.Column<string>(type: "varchar(1024)", maxLength: 1024, nullable: false)
Name = table.Column<string>(type: "varchar(512)", maxLength: 1024, nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
DataImporterType = table.Column<string>(type: "varchar(254)", maxLength: 254, nullable: false)
.Annotation("MySql:CharSet", "utf8mb4"),
Expand Down

0 comments on commit 3d3f019

Please sign in to comment.