1.20.x file.install | file_update_1008() |
Creates the table to enable caching of Comment entities.
File
- modules/
file/ file.install, line 1194 - Install, update and uninstall functions for File module.
Code
function file_update_1008() {
$table = backdrop_get_schema_unprocessed('system', 'cache');
$table['description'] = "Cache table used to store File entity records.";
db_create_table('cache_entity_file', $table);
}