You are here

function video_embed_field_update_7001 in Video Embed Field 7.2

Adds video style storage table.

File

./video_embed_field.install, line 138
Install, update and uninstall functions for the video_embed_field module.

Code

function video_embed_field_update_7001() {
  if (!db_table_exists('vef_video_styles')) {
    $schema = video_embed_field_schema();
    db_create_table('vef_video_styles', $schema['vef_video_styles']);
  }
  return t('Video styles storage table created.');
}