-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christian Fritsch
committed
Jun 24, 2024
1 parent
2e5de00
commit b1b73a7
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Update Thunder 7 -> Thunder 8 | ||
|
||
## Prerequisites | ||
|
||
These are the instructions to manually update your existing Thunder 7 installation to Thunder 8. If | ||
you want to do a fresh installation of thunder please visit [install Thunder](../setup.md#install-thunder). | ||
|
||
You have to make sure that your Thunder 7 project and all its dependencies are fully updated to the most current | ||
versions. Run the following command in your docroot: | ||
|
||
```bash | ||
drush ev "print drupal_get_installed_schema_version('thunder') . PHP_EOL;" | ||
``` | ||
|
||
This should print the number XXXX or greater. If that is not the case, update your project. | ||
|
||
```bash | ||
cd .. | ||
composer update | ||
``` | ||
|
||
This should update to Thunder 7.3 or greater. | ||
|
||
Now run database updates: | ||
|
||
```bash | ||
cd docroot | ||
drush updb | ||
``` | ||
|
||
You should at least see the Thunder XXXX schema update. If not, double check that the correct version of Thunder | ||
is installed, and that `drush updb` did not throw any errors. | ||
|
||
Before you start with the code and database update please disable the jQuery UI Draggable module or require it on your own. | ||
|
||
```bash | ||
composer require drupal/jquery_ui_draggable | ||
``` | ||
|