# create database main schema
php bin/console doctrine:migrations:diff
php bin/console doctrine:migrations:migrate# create the missing tenant databases
php bin/console tenant:database:create
# create the diffs for tenant databases
php bin/console tenant:migration:diff 1
# execute the initial migrations on all tenant databases
php bin/console tenant:migration:migrate init
# execute the migrations on all tenant databases
php bin/console tenant:migration:migrate update