function hosting_package_update_1 in Hosting 6.2
Same name and namespace in other branches
- 5 package/hosting_package.install \hosting_package_update_1()
- 7.4 package/hosting_package.install \hosting_package_update_1()
- 7.3 package/hosting_package.install \hosting_package_update_1()
Add package description to hosting_package table
File
- package/
hosting_package.install, line 135 - Install, update and uninstall for the package management module.
Code
function hosting_package_update_1() {
$ret = array();
$ret[] = update_sql("ALTER TABLE {hosting_package} ADD COLUMN description longtext NOT NULL default ''");
return $ret;
}