You are here

function fe_paths_update_7000 in File Entity Paths 7.2

Implements hook_update_7000();

Create missing database table to store fe_paths configuration.

File

./fe_paths.install, line 209
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_7000() {
  db_create_table('fe_paths_config', drupal_get_schema('fe_paths_config'));
  return t('The table for configuration created successful.');
}