Skip to content

Commit

Permalink
fix(wfs): correct computed length column
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneD committed Jan 14, 2025
1 parent 15ce334 commit 39fefef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
Removed = table.Column<bool>(type: "bit", nullable: false),
VersionTimestamp = table.Column<DateTimeOffset>(type: "datetimeoffset", nullable: false),
VersionAsString = table.Column<string>(type: "nvarchar(max)", nullable: true),
HouseNumberLabelLength = table.Column<int>(type: "int", nullable: false, computedColumnSql: "LEN(HouseNumberLabel)", stored: true)
HouseNumberLabelLength = table.Column<int>(type: "int", nullable: false, computedColumnSql: "CAST(LEN(HouseNumberLabel) AS INT)", stored: true)
},
constraints: table =>
{
Expand Down

0 comments on commit 39fefef

Please sign in to comment.