Skip to content

Commit 21ca379

Browse files
[SQL] Changing the schema migration package download link (Azure#8502)
Co-authored-by: Ajay Parwani <[email protected]>
1 parent 1d78ca2 commit 21ca379

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src/datamigration/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Release History
44
===============
55

66
=======
7+
1.0.0b4
8+
++++++
9+
* Updated the URL to download the SQL Server schema Zip to `https://aka.ms/sqlschemamigrationpackage`
10+
711
1.0.0b3
812
++++++
913
* Updated the URL to download the SQL Assessment Zip to `https://aka.ms/sqlassessmentpackage`

src/datamigration/azext_datamigration/manual/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def check_and_download_sqlServerSchema_console_app(exePath, baseFolder):
356356

357357
# Downloading console app zip and extracting it
358358
if not testPath:
359-
zipSource = "https://migrationapps.blob.core.windows.net/schemamigration/SqlSchemaMigration.zip"
359+
zipSource = "https://aka.ms/sqlschemamigrationpackage"
360360
zipDestination = os.path.join(baseFolder, "SqlSchemaMigration.zip")
361361

362362
urllib.request.urlretrieve(zipSource, filename=zipDestination)

src/datamigration/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from setuptools import setup, find_packages
1111

1212
# HISTORY.rst entry.
13-
VERSION = '1.0.0b3'
13+
VERSION = '1.0.0b4'
1414
try:
1515
from azext_datamigration.manual.version import VERSION
1616
except ImportError:

0 commit comments

Comments
 (0)