llms_update_3160_lesson_to_quiz_relationships_migration()
Rename meta keys for lesson -> quiz relationship
Contents
Return Return
(void)
Source Source
File: includes/functions/updates/llms-functions-updates-3160.php
function llms_update_3160_lesson_to_quiz_relationships_migration() {
global $wpdb;
$wpdb->update(
$wpdb->postmeta,
array(
'meta_key' => '_llms_quiz',
),
array(
'meta_key' => '_llms_assigned_quiz',
)
); // db call ok; no-cache ok.
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.16.0 | Introduced. |