You are here

function asset_update_7101 in Asset 7

Add indexes for table `asset`.

File

./asset.install, line 199
Install, update and uninstall functions for the assets module.

Code

function asset_update_7101() {
  db_add_index('asset', 'asset_changed', array(
    'changed',
  ));
  db_add_index('asset', 'asset_created', array(
    'created',
  ));
}