You are here

function hosting_server_update_7300 in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 server/hosting_server.install \hosting_server_update_7300()

Add 'name' field to hosting_server.

File

server/hosting_server.install, line 361
Define the database schema and update functions for the hosting_server module.

Code

function hosting_server_update_7300() {
  db_add_field('hosting_server', 'human_name', array(
    'type' => 'text',
    'size' => 'small',
    'not null' => FALSE,
  ));
}