blogapi_update_6001

6 blogapi.install blogapi_update_6001()

Add blogapi_files table to enable size restriction for BlogAPI file uploads.

This table was introduced in Drupal 6.4.

Related topics

File

modules/blogapi/blogapi.install, line 79

Code

function blogapi_update_6001() {
  $schema['blogapi_files'] = array(
    'description' => 'Stores information for files uploaded via the blogapi.', 
    'fields' => array(
      'fid' => array(
        'description' => 'Primary Key: Unique file ID.', 
        'type' => 'serial',
      ), 
      'uid' => array(
        'description' => 'The {users}.uid of the user who is associated with the file.', 
        'type' => 'int', 
        'unsigned' => TRUE, 
        'not null' => TRUE, 
        'default' => 0,
      ), 
      'filepath' => array(
        'description' => 'Path of the file relative to Drupal root.', 
        'type' => 'varchar', 
        'length' => 255, 
        'not null' => TRUE, 
        'default' => '',
      ), 
      'filesize' => array(
        'description' => 'The size of the file in bytes.', 
        'type' => 'int', 
        'unsigned' => TRUE, 
        'not null' => TRUE, 
        'default' => 0,
      ),
    ), 
    'primary key' => array('fid'), 
    'indexes' => array(
      'uid' => array('uid'),
    ),
  );

  $ret = array();

  if (!db_table_exists('blogapi_files')) {
    db_create_table($ret, 'blogapi_files', $schema['blogapi_files']);
  }
  return $ret;
}
Login or register to post comments