Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7479050

Browse files
authored
Merge branch 'master' into imported-magento-devdocs-8811
2 parents e0a58f6 + d9d42d8 commit 7479050

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed

src/guides/v2.3/migration/migration-tool-internal-spec.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,42 @@ Change prefix option in case Magento was installed with prefix in database table
165165

166166
Configuration data is accessible via \Migration\Config class.
167167

168+
### Steps available operations {#steps}
169+
170+
|Document|Field|
171+
|---|---|
172+
|`step`|Second level node inside the Steps node. Description of the relevant step must be specified in the `title` attribute.|
173+
|`integrity`|Specifies the PHP class responsible for the integrity check. Compares the table field names, types, and other info to verify compatibility between Magento 1 and 2 data structures.|
174+
|`data`|Specifies the PHP class responsible for the data check. Transfers the data, table by table from Magento 1 to Magento 2.|
175+
|`volume`|Specifies the PHP class responsible for the volume check. Compares the number of records between tables to verify that the transfer was successful.|
176+
|`delta`|Specifies the PHP class responsible for the delta check. Transfers the delta from Magento 1 to Magento 2 after the full data migration.|
177+
178+
### Source database attributes {#source}
179+
180+
|Document|Field|Required?|
181+
|---|---|---|
182+
|`name`|Database name of the Magento 1 server.|yes|
183+
|`host`|Host IP address of the Magento 1 server.|yes|
184+
|`port`|Port number of the Magento 1 server.|no|
185+
|`user`|Username of the Magento 1 database server.|yes|
186+
|`password`|Password of the Magento 1 database server.|yes|
187+
|`ssl_ca`|Path to SSL Certificate Authority file.|no|
188+
|`ssl_cert`|Path to SSL Certificate file.|no|
189+
|`ssl_key`|Path to SSL Key file.|no|
190+
191+
### Destination database attributes {#destination}
192+
193+
|Document|Field|Required?|
194+
|---|---|---|
195+
|`name`|Database name of the Magento 2 server.|yes|
196+
|`host`|Host IP address of the Magento 2 server.|yes|
197+
|`port`|Port number of the Magento 2 server.|no|
198+
|`user`|Username of the Magento 2 database server.|yes|
199+
|`password`|Password of the Magento 2 database server.|yes|
200+
|`ssl_ca`|Path to SSL Certificate Authority file.|no|
201+
|`ssl_cert`|Path to SSL Certificate file.|no|
202+
|`ssl_key`|Path to SSL Key file.|no|
203+
168204
### Connect using the TLS protocol
169205

170206
You can also connect to a database using the TLS protocol (i.e., using public/private cryptographic keys). Add the following optional attributes to the `database` element:

src/guides/v2.4/migration/migration-tool-internal-spec.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,42 @@ Change prefix option in case Magento was installed with prefix in database table
165165

166166
Configuration data is accessible via \Migration\Config class.
167167

168+
### Steps available operations {#steps}
169+
170+
|Document|Field|
171+
|---|---|
172+
|`step`|Second level node inside the Steps node. Description of the relevant step must be specified in the `title` attribute.|
173+
|`integrity`|Specifies the PHP class responsible for the integrity check. Compares the table field names, types, and other info to verify compatibility between Magento 1 and 2 data structures.|
174+
|`data`|Specifies the PHP class responsible for the data check. Transfers the data, table by table from Magento 1 to Magento 2.|
175+
|`volume`|Specifies the PHP class responsible for the volume check. Compares the number of records between tables to verify that the transfer was successful.|
176+
|`delta`|Specifies the PHP class responsible for the delta check. Transfers the delta from Magento 1 to Magento 2 after the full data migration.|
177+
178+
### Source database information attributes {#source}
179+
180+
|Document|Field|Required?|
181+
|---|---|---|
182+
|`name`|Database name of the Magento 1 server.|yes|
183+
|`host`|Host IP address of the Magento 1 server.|yes|
184+
|`port`|Port number of the Magento 1 server.|no|
185+
|`user`|Username of the Magento 1 database server.|yes|
186+
|`password`|Password of the Magento 1 database server.|yes|
187+
|`ssl_ca`|Path to SSL Certificate Authority file.|no|
188+
|`ssl_cert`|Path to SSL Certificate file.|no|
189+
|`ssl_key`|Path to SSL Key file.|no|
190+
191+
### Destination database information attributes {#destination}
192+
193+
|Document|Field|Required?|
194+
|---|---|---|
195+
|`name`|Database name of the Magento 2 server.|yes|
196+
|`host`|Host IP address of the Magento 2 server.|yes|
197+
|`port`|Port number of the Magento 2 server.|no|
198+
|`user`|Username of the Magento 2 database server.|yes|
199+
|`password`|Password of the Magento 2 database server.|yes|
200+
|`ssl_ca`|Path to SSL Certificate Authority file.|no|
201+
|`ssl_cert`|Path to SSL Certificate file.|no|
202+
|`ssl_key`|Path to SSL Key file.|no|
203+
168204
### Connect using the TLS protocol
169205

170206
You can also connect to a database using the TLS protocol (i.e., using public/private cryptographic keys). Add the following optional attributes to the `database` element:

0 commit comments

Comments
 (0)