You are here

function s3fs_update_7006 in S3 File System 7

Same name and namespace in other branches
  1. 7.3 s3fs.install \s3fs_update_7006()
  2. 7.2 s3fs.install \s3fs_update_7006()

Add Version schema change to existing installs

File

./s3fs.install, line 326
Install, update and uninstall functions for the S3 File System module.

Code

function s3fs_update_7006() {
  $version = array(
    'description' => 'The VersionId of the object.',
    'type' => 'char',
    'length' => 32,
    'not null' => FALSE,
    'default' => '',
  );
  db_add_field('s3fs_file', 'version', $version);
}