Changes between Version 2 and Version 3 of genvasc_labels


Ignore:
Timestamp:
09/17/12 12:17:10 (12 years ago)
Author:
Nick Holden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • genvasc_labels

    v2 v3  
    66
    77See IdLabelPrinting for the BRICCS ID label printing configurations, and underlying set-up.
     8
     9The drupal schema for the the MySQL table for 'genvasc_ids' is very simple:
     10
     11
     12{{{
     13  $schema['genvasc_ids'] =  array(
     14
     15    'description' => 'The table for used GENVASC IDs.',
     16    'fields' => array(
     17      'genvasc_id' => array(
     18        'description' => 'GENVASC IDs already used.',
     19        'type' => 'varchar',
     20        'length' => 16,
     21        'not null' => TRUE,
     22        'default' => '0'),
     23      ),
     24    'primary key' => array('genvasc_id'),
     25  );
     26}}}
     27