You are here

function fe_paths_update_7001 in File Entity Paths 7.2

Implements hook_update_7001();

Create missing database table to store fe_paths configuration usage.

File

./fe_paths.install, line 219
Install, update and uninstall functions for the File Entity Paths module. @todo: Figure out, how should this work with Filefield Paths. Now, the filefield_paths has partial media + File Entity support

Code

function fe_paths_update_7001() {
  db_create_table('fe_paths_usage', drupal_get_schema('fe_paths_usage'));
  return t('The table for configuration created successful.');
}