e746afd835
Universal: PR Check / Branch Policy (pull_request) Failing after 3s
Joomla: Extension CI / Release Readiness Check (pull_request) Failing after 7s
Generic: Repo Health / Access control (pull_request) Successful in 3s
Generic: Repo Health / Site Health (pull_request) Has been skipped
Universal: PR Check / Validate PR (pull_request) Failing after 12s
Generic: Project CI / Lint & Validate (pull_request) Successful in 16s
Universal: PR Check / Secret Scan (pull_request) Successful in 21s
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Successful in 30s
Joomla: Extension CI / Lint & Validate (pull_request) Failing after 1m2s
Joomla: Metadata Validation / Validate Joomla Metadata (pull_request) Successful in 1m3s
Universal: Build & Release / Promote to RC (pull_request) Failing after 13s
Universal: Build & Release / Build & Release Pipeline (pull_request) Has been skipped
Generic: Project CI / Tests (pull_request) Has been cancelled
Joomla: Extension CI / Tests (PHP 8.2) (pull_request) Has been cancelled
Joomla: Extension CI / Tests (PHP 8.3) (pull_request) Has been cancelled
Joomla: Extension CI / PHPStan Analysis (pull_request) Has been cancelled
Joomla: Extension CI / Build RC Pre-Release (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
Generic: Repo Health / Scripts governance (pull_request) Has been cancelled
Generic: Repo Health / Repository health (pull_request) Has been cancelled
Generic: Repo Health / Report: Scripts Governance (pull_request) Has been cancelled
Generic: Repo Health / Report: Repository Health (pull_request) Has been cancelled
The mokosuite_license_cache table was added to install.mysql.sql but never had a corresponding update file. Existing installs (upgrading from pre-02.48.20) never received this table. Additionally, no SQL update files existed between 02.48.20 and 02.52.00, causing Joomla to report a database schema mismatch (manifest says 02.52.00 but #__schemas is stuck at 02.48.20).
12 lines
550 B
SQL
12 lines
550 B
SQL
-- 02.52.00 — Create license cache table (missing from prior migrations)
|
|
-- This table was in install.mysql.sql but never had an update file,
|
|
-- so existing installs never received it.
|
|
|
|
CREATE TABLE IF NOT EXISTS `#__mokosuite_license_cache` (
|
|
`dlid_hash` CHAR(64) NOT NULL COMMENT 'SHA-256 of DLID (never store raw DLID)',
|
|
`response_data` TEXT NOT NULL COMMENT 'JSON validation response from MokoGitea',
|
|
`checked_at` DATETIME NOT NULL,
|
|
PRIMARY KEY (`dlid_hash`),
|
|
KEY `idx_checked` (`checked_at`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|