We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8cea18 commit f41613cCopy full SHA for f41613c
src/Umbraco.Cms.Integrations.Automation.Zapier/Migrations/ZapContentConfigTable.cs
@@ -63,11 +63,11 @@ public class ZapContentConfig
63
public int Id { get; set; }
64
65
[Column("ContentTypeName")]
66
- [Index(IndexTypes.NonClustered, Name = "IX_ZapContentConfig_ContentTypeName")]
+ [Index(IndexTypes.UniqueNonClustered, Name = "IX_ZapContentConfig_ContentTypeName")]
67
public string ContentTypeName { get; set; }
68
69
[Column("WebHookUrl")]
70
- [Index(IndexTypes.NonClustered, Name = "IX_ZapContentConfig_WebHookUrl")]
+ [Index(IndexTypes.UniqueNonClustered, Name = "IX_ZapContentConfig_WebHookUrl")]
71
public string WebHookUrl { get; set; }
72
73
[Column("IsEnabled")]
0 commit comments