You are here

function hosting_package_update_3 in Hosting 7.4

Same name and namespace in other branches
  1. 5 package/hosting_package.install \hosting_package_update_3()
  2. 6.2 package/hosting_package.install \hosting_package_update_3()
  3. 7.3 package/hosting_package.install \hosting_package_update_3()

Implements hook_update_N().

No limit on short_name length

File

package/hosting_package.install, line 158
Define database schema and update functions for the package management module.

Code

function hosting_package_update_3() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {hosting_package} MODIFY COLUMN short_name longtext NOT NULL default ''");
  return $ret;
}