You are here

function hosting_web_pack_schema in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 web_pack/hosting_web_pack.install \hosting_web_pack_schema()
  2. 7.3 web_pack/hosting_web_pack.install \hosting_web_pack_schema()

File

web_pack/hosting_web_pack.install, line 3

Code

function hosting_web_pack_schema() {
  return array(
    'hosting_web_pack' => array(
      'fields' => array(
        'vid' => array(
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
          'default' => 0,
        ),
        'nid' => array(
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
          'default' => 0,
        ),
        'web_server_nid' => array(
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
          'default' => 0,
        ),
        'type' => array(
          'type' => 'varchar',
          'length' => 60,
          'not null' => TRUE,
          'default' => 'slave',
        ),
      ),
      'primary key' => array(
        'vid',
        'web_server_nid',
      ),
    ),
  );
}