function hosting_package_update_1 in Hosting 5
Same name and namespace in other branches
- 6.2 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 37
Code
function hosting_package_update_1() {
$ret = array();
$ret[] = update_sql("ALTER TABLE {hosting_package} ADD COLUMN description longtext NOT NULL default ''");
return $ret;
}