array( 'fid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'nid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'oid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'status' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'video_index' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'width' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 450), 'height' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 337), 'play_counter' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'flags' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), ), 'indexes' => array( 'fid' => array('fid'), 'nid' => array('nid'), 'oid' => array('oid'), ), 'primary key' => array('fid'), ); $schema['ffmpeg_data'] = array( 'fields' => array( 'did' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE), 'fid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'created' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'input_file' => array('type' => 'text', 'not null' => FALSE), 'output_file' => array('type' => 'text', 'not null' => FALSE), 'status' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'data' => array('type' => 'text', 'not null' => FALSE), ), 'indexes' => array( 'did' => array('did'), 'fid' => array('fid'), ), 'primary key' => array('did'), ); return $schema; }