Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Sql schema migration and version package to new url #27203

Merged
merged 3 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function New-AzDataMigrationSqlServerSchema
$TestExePath = Test-Path -Path $ExePath;

#Console app download address
$ZipSource = "https://migrationapps.blob.core.windows.net/schemamigration/SqlSchemaMigration.zip";
$ZipSource = "https://aka.ms/sqlschemamigrationpackage";
$ZipDestination = Join-Path -Path $BaseFolder -ChildPath "SqlSchemaMigration.zip";

if(-Not $TestExePath)
Expand All @@ -108,7 +108,7 @@ function New-AzDataMigrationSqlServerSchema

# Get latest console app version
Write-Host "Checking whether there is newer version...";
$VersionFileSource = "https://migrationapps.blob.core.windows.net/schemamigration/consoleappversion.json";
$VersionFileSource = "aka.ms/sqlschemamigrationversion";
$VersionFileDestination = Join-Path -Path $BaseFolder -ChildPath "consoleappversion.json";
Invoke-RestMethod -Uri $VersionFileSource -OutFile $VersionFileDestination;
$jsonObj = Get-Content $VersionFileDestination | Out-String | ConvertFrom-Json;
Expand Down Expand Up @@ -186,4 +186,4 @@ function New-AzDataMigrationSqlServerSchema
throw $_
}
}
}
}
1 change: 1 addition & 0 deletions src/DataMigration/DataMigration/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Updated Sql schema migration and version package to new url.

## Version 0.14.9
* Upgraded nuget package to signed package.
Expand Down