From 5be7c2640db2f0700e03f3aadfb22b51e75ae026 Mon Sep 17 00:00:00 2001 From: Proximate Date: Tue, 6 Jan 2026 08:59:26 +0100 Subject: [PATCH] Clarify update script execution during installation Added warning about update scripts not executing during initial installation. --- .../install-update/installation/manifest.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/versioned_docs/version-6.0/building-extensions/install-update/installation/manifest.md b/versioned_docs/version-6.0/building-extensions/install-update/installation/manifest.md index 79b51e4d..b2455a8a 100644 --- a/versioned_docs/version-6.0/building-extensions/install-update/installation/manifest.md +++ b/versioned_docs/version-6.0/building-extensions/install-update/installation/manifest.md @@ -343,6 +343,11 @@ If you install one version of the extension then skip some versions before insta The currently installed version is maintained in the `#__schemas` table. You can find a worked example in [Developing an MVC Component/Using the database](https://docs.joomla.org/J3.x:Developing_an_MVC_Component/Using_the_database). +:::warning[Important] + When the corresponding component is initially installed, the update scripts are not executed. + The `example.install.sql` must contain the current status of all database changes and thus describe the current status. +::: + :::note[TODO] Update the above link when the MVC Component Tutorial is included in the manual. :::