t('The table for meta data about filefield files.'), 'fields' => array( 'fid' => array( 'description' => t('The file id.'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, ), 'width' => array( 'description' => t('Width of a video or image file in pixels.'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => FALSE, ), 'height' => array( 'description' => t('Height of a video or image file in pixels.'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => FALSE, ), 'duration' => array( 'description' => t('The duration of audio or video files, in seconds.'), 'type' => 'float', 'size' => 'normal', 'not null' => FALSE, ), ), 'primary key' => array('fid'), ); return $schema; }