I am working on a web in Drupal 8. Currently the web is already in Production

But at the same time I continue to work creating new entities, etc. in local development.

What can I upload only my part of the database work, without crushing what is currently in production?

So far I exported the entire database and uploaded it to the server, but being in production I can not do it anymore.

Is there any way to export ONLY the contents or entities or elements modified, and thus make partial rises?

Thanks!

Comments

hiramanpatil’s picture

1) To export entities or elements modified you can use https://www.drupal.org/project/features module.

2) To upload content from local to production you can use https://www.drupal.org/project/feeds module. (Export the content from local and then import it on production)

Thanks,