SQL schema numbering described#607
Conversation
ⓘ You are approaching your monthly quota for Qodo. Upgrade your plan Review Summary by QodoDocument SQL schema numbering and update processing behavior
WalkthroughsDescription• Clarified SQL install/update/uninstall descriptions with improved wording • Added comprehensive "SQL Schema Numbering" section explaining Joomla's version tracking • Documented how Joomla processes SQL updates during initial install and upgrades • Included detailed example showing version progression and schema table updates Diagramflowchart LR
A["Extension Install"] --> B{"SQL files exist?"}
B -->|No| C["No #__schemas record"]
B -->|Yes| D["Store highest filename in #__schemas"]
E["Extension Update"] --> F["Read current version from #__schemas"]
F --> G["Order update files numerically"]
G --> H["Execute files after current version"]
H --> I["Update #__schemas with latest version"]
File Changes1. docs/building-extensions/install-update/installation/manifest.md
|
Code Review by Qodo
1.
|
|
@marcorensch - I've included a new section on SQL schema numbering - feel free to comment. Easiest way to see the text is via the Preview which is generated for this PR - at |
Clarification regarding how Joomla processes the SQL update files in particular.