Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/baikho/drupal-migrate_728
Drupal 7 to 8 migration example
https://github.com/baikho/drupal-migrate_728
drupal drupal-7 drupal-8 drupal-migrate
Last synced: 10 days ago
JSON representation
Drupal 7 to 8 migration example
- Host: GitHub
- URL: https://github.com/baikho/drupal-migrate_728
- Owner: baikho
- Created: 2019-02-17T17:53:52.000Z (almost 6 years ago)
- Default Branch: 8.x-1.x
- Last Pushed: 2019-02-17T17:56:02.000Z (almost 6 years ago)
- Last Synced: 2024-11-28T07:12:11.911Z (2 months ago)
- Topics: drupal, drupal-7, drupal-8, drupal-migrate
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Migrate 728
Drupal 7 to 8 migration example## Migration setup & execution
1. Create dummy content (users, articles, taxonomy, comments, ...) in D7 with `devel_generate`
2. Setup connection details in D8:
```
// Source db.
$databases['migrate']['default'] = array(
... connection details
);
// Destination db.
$databases['default']['default'] = array(
... connection details
);
```3. Download & install module: `$ drush en migrate_728 -y`
4. Adjust `bundle` value in Tag migration YAML to an existing vid from your D7 generated vocabulary.
5. Run migration script:
```
$ drush mi --group=migrate_728 --feedback=100
```