diff -r fcf75e232c5b -r 0ff3ba646492 web/drupal/modules/blogapi/blogapi.install --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/drupal/modules/blogapi/blogapi.install Fri Aug 21 16:26:26 2009 +0000 @@ -0,0 +1,125 @@ + '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'), + ), + ); + + return $schema; +} + +/** + * @defgroup updates-5.x-to-6.x Blog API updates from 5.x to 6.x + * @{ + */ + +/** + * Inform users about the new permission. + */ +function blogapi_update_6000() { + drupal_set_message("Blog API module does not depend on blog module's permissions anymore, but provides its own 'administer content with blog api' permission instead. Until 'module-blogapi')) .'">this permission is assigned to at least one user role, only the site administrator will be able to use Blog API features.'); + return array(); +} + + +/** + * Add blogapi_files table to enable size restriction for BlogAPI file uploads. + * + * This table was introduced in Drupal 6.4. + */ +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; +} + +/** + * @} End of "defgroup updates-5.x-to-6.x" + * The next series of updates should start at 7000. + */ +