function hosting_package_update_1 in Hostmaster (Aegir) 6
Add package description to hosting_package table
File
- modules/
hosting/ package/ hosting_package.install, line 130 - 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;
}