Fix/sonarqube critical major debt #11

Merged
bermudalamb merged 10 commits from fix/sonarqube-critical-major-debt into main 2026-05-26 10:36:29 -05:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 71cdf8a766 - Show all commits
@@ -4,7 +4,7 @@ namespace Strata.SqlTools.SqlBreakdown.Enums.SQL;
/// Specifies the type of SQL constraint.
/// </summary>
[Flags]
public enum ConstraintType
public enum ConstraintTypes
{
/// <summary>
/// Default value constraint.
@@ -36,4 +36,3 @@ public enum ConstraintType
/// </summary>
All = 31
}
@@ -4,7 +4,7 @@ namespace Strata.SqlTools.SqlBreakdown.Enums.SQL;
/// Specifies the type of SQL trigger.
/// </summary>
[Flags]
public enum TriggerType
public enum TriggerTypes
{
/// <summary>
/// Trigger fires after the action.
@@ -21,4 +21,3 @@ public enum TriggerType
/// </summary>
Both = 3
}