- Issue created by @Thuthuka
- 🇬🇧United Kingdom Thuthuka
I have been comparing my composer install with an opigno/cli Docker image.
The composer install did not create the following tables that are present in the Docker image.
cache_dynamic_page_cache
cache_group_permission
cache_page
cache_signal
cache_toolbar
cache_ultimate_cron_logger
user__user_pictureAfter some online searching I found this thread
https://www.drupal.org/project/opigno_lms/issues/3263598 →after reading #22 and #24
I did the following command:
composer create-project opigno/opigno-composer:3.1.* . --no-installedit composer.json to match this
------------------------
"require-dev": {
"drush/drush": "^10",
"mglaman/composer-drupal-lenient": "^1.0"
},
------------------------and then the following command:
composer install --ignore-platform-req phpThis has made all the tables and an install that appears to work.