-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed #221 * Fixed #222 * Fixed #229 * Add techdivision/import-product#146 * Add #216
- Loading branch information
Showing
6 changed files
with
506 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
:major: 3 | ||
:minor: 7 | ||
:patch: 4 | ||
:minor: 8 | ||
:patch: 0 | ||
:special: '' | ||
:metadata: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Upgrade from 3.7.4 to 3.8.0 | ||
|
||
## Configuration | ||
|
||
### Table Prefix | ||
|
||
With the new `--db-table-prefix` parameter, it is possible to pass the table prefix that has been used when the Magento setup created the database. The tabble prefix can either be passed as parameter specified in the configuration at the specific database connection like | ||
|
||
```json | ||
{ | ||
... | ||
"databases": [ | ||
{ | ||
"id": "live", | ||
"default" : true, | ||
"pdo-dsn": "mysql:host=127.0.0.1;dbname=magento2;charset=utf8", | ||
"username": "magento", | ||
"password": "foOQNGEcKS8mZmVH", | ||
"table-prefix": "test_" | ||
} | ||
] | ||
... | ||
} | ||
``` | ||
|
||
whereas the commandline parameter will be preferred if both has been specified. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.