function paragraphs_update_7100 in Paragraphs 7
Make sure all paragraph fields have the new index on revision_id.
File
- ./
paragraphs.install, line 164 - Install, update and uninstall functions for the paragraphs module.
Code
function paragraphs_update_7100() {
// Update the paragraphs_field_schema columns for all tables.
foreach (field_read_fields(array(
'type' => 'paragraphs',
)) as $field) {
field_update_field($field);
}
}