<?php

function combo_schema() {
  $schema['combo_atoms'] = array(
    'fields' => array(
      'id' => array('type' => 'serial'),
      'atom' => array('type' => 'varchar', 'length' => 255),
    ),
    'primary key' => array('id'),
    'unique keys' => array(
      'atom' => array('atom'),
    ),
  );
  return $schema;
}

function combo_install() {
  drupal_install_schema('combo');
}
