<?php

/**
 * @file
 * Install hooks for uc_ship2country.module
 */

function uc_ship2country_schema() {
  $schema = array();
	
  $schema['uc_ship2country'] = array(
    'fields' => array(
      'nid' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
      ),
      'data' => array(
        'type' => 'text',
        'not null' => FALSE,
        'size' => 'big',
      ),
    ),
    'primary key' => array('nid'),
  );
	
	return $schema;
}

function uc_ship2country_install() {
  drupal_install_schema('uc_ship2country');
}
