21 lines
786 B
Plaintext
21 lines
786 B
Plaintext
<?php
|
|
// $Id$
|
|
|
|
function contact_schema() {
|
|
$schema['contact'] = array(
|
|
'fields' => array(
|
|
'cid' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE),
|
|
'category' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''),
|
|
'recipients' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
|
|
'reply' => array('type' => 'text', 'not null' => TRUE, 'size' => 'big'),
|
|
'weight' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny'),
|
|
'selected' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')
|
|
),
|
|
'unique keys' => array('category' => array('category')),
|
|
'primary key' => array('cid'),
|
|
);
|
|
|
|
return $schema;
|
|
}
|
|
|