You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FixesnopSolutions#7294
Update `TopicTemplateBuilder.cs`, `Indexes.cs`, and `SchemaMigration.cs` to add an index on `Topic.SystemName` by changing its type to `nvarchar(400)`.
* **TopicTemplateBuilder.cs**
- Add `SystemName` column definition with `nvarchar(400)` in `MapEntity` method.
* **Indexes.cs**
- Add index creation for `Topic.SystemName` in `Up` method.
* **SchemaMigration.cs**
- Alter `SystemName` column to `nvarchar(400)` in `Up` method.
nopCommerce version: 4.60 +
Can't add index on Topic.SystemName becase it's nvarchar(max). Let's change it to nvarchar(400)
nopCommerce/src/Libraries/Nop.Data/Mapping/Builders/Topics/TopicTemplateBuilder.cs
Line 17 in 324486b
Please add SystemName in column definition in the builder so column gets created with limited length.
The text was updated successfully, but these errors were encountered: