Skip to content

Commit

Permalink
Fix warning message when creating default schema.ps1 file.
Browse files Browse the repository at this point in the history
  • Loading branch information
KhoiKy committed Oct 26, 2022
1 parent 5bb2784 commit ccfafbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rivet/Functions/New-Migration.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function New-Migration
if (-not (Test-Path -Path $schemaPs1Path))
{
$script:defaultSchemaPs1Content | Set-Content -Path $schemaPs1Path
$msg = "Rivet created ""$($schemaPs1Path | Resolve-Path -Relative)"", a file where Rivet to stores the " +
$msg = "Rivet created ""$($schemaPs1Path | Resolve-Path -Relative)"", a file where Rivet stores the " +
'database''s baseline schema. PLEASE CHECK THIS FILE INTO SOURCE CONTROL.'
Write-Warning $msg
}
Expand Down

0 comments on commit ccfafbc

Please sign in to comment.