'table use for for storing input data in "télécharger le thésaurus Eau" form.', 'fields' => array( 'tdid' => array( 'description' => 'Unique identifier for the environment', 'type' => 'serial', 'not null' => TRUE, ), 'key'=>array( 'description' => 'the key for retrieve the download link', 'type' => 'varchar', 'not null' => TRUE, 'default' => 0, ), 'use'=>array( 'description' => 'the key was already used ?', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'submit' => array( 'description' => 'The Unix timestamp when the form was submited.', 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'values' => array( 'description' => 'serialize value of inputs.', 'type' => 'blob', 'not null' => TRUE, 'size' => 'big', ), ), 'primary key' => array('tdid'), ); return $schema; } function eaudoc_7001() { db_create_table('thesaurus_download', drupal_get_schema_unprocessed('eaudoc', 'thesaurus_download')); return 'Add the "thesaurus_download" table for the eaudoc module.'; }