You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/guides/v2.3/migration/migration-tool-internal-spec.md
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -165,6 +165,42 @@ Change prefix option in case Magento was installed with prefix in database table
165
165
166
166
Configuration data is accessible via \Migration\Config class.
167
167
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|
|`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
+
168
204
### Connect using the TLS protocol
169
205
170
206
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:
Copy file name to clipboardExpand all lines: src/guides/v2.4/migration/migration-tool-internal-spec.md
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -165,6 +165,42 @@ Change prefix option in case Magento was installed with prefix in database table
165
165
166
166
Configuration data is accessible via \Migration\Config class.
167
167
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
+
168
204
### Connect using the TLS protocol
169
205
170
206
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