0

how can I use wordpress core for continuous integration/deployment. it seems wordpres completely work with database changes. it means when I change my local and users change production there is a conflict and need merge on db .

Hamid Shariati
  • 546
  • 6
  • 18

1 Answers1

0

Continuous Integration with systems like Git and Bitbucket is for files only, and Wordpress does not use Schema Builders like Laravel. For database changes, you can simply export production and import to local before testing changes then push live, or you can look for schema modifiers like ApexSQL Diff

Rad Apdal
  • 442
  • 1
  • 6
  • 16