Posted by chx on December 22, 2012 at 5:55am
Project:
Drupal core
Introduced in branch:
8.x Description:
If your module used it's own cache table, say cache_foo you need to write a simple update function:
<?php
function foo_update_8001() {
update_add_cache_columns('cache_foo');
}
?>