Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/hotfix/1.7.0' into release/1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abbgrade committed Aug 13, 2024
2 parents acf541e + c26112d commit 55dc724
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-validation.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
push:
branches: [ develop, bugfix/*, feature/*, release/* ]
branches: [ develop, bugfix/*, feature/*, release/*, hotfix/* ]
pull_request:
branches: [ develop ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
push:
branches: [ release/* ]
branches: [ release/*, hotfix/* ]
workflow_dispatch:

jobs:
Expand Down
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"cSpell.words": [
"dacpac",
"Filegroups",
"Hashtable",
"Nocheck",
"sqlproj",
"Ssdt",
"testdb"
Expand Down
12 changes: 12 additions & 0 deletions src/PsDac/InstallPackageCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,18 @@ public Hashtable Variables
}
}

[Parameter()]
public SwitchParameter IgnoreWithNocheckOnForeignKeys
{
set { DeployOptions.IgnoreWithNocheckOnForeignKeys = value.IsPresent; }
}

[Parameter()]
public SwitchParameter IgnoreWithNocheckOnCheckConstraints
{
set { DeployOptions.IgnoreWithNocheckOnCheckConstraints = value.IsPresent; }
}

#region Timeouts

[Parameter()]
Expand Down

0 comments on commit 55dc724

Please sign in to comment.