'Stores form information.', 'fields' => array( 'uid' => array( 'type' => 'int', 'description' => t('User ID.'), ), 'hostname' => array( 'type' => 'varchar', 'length' => 255, 'description' => 'IP address.', ), 'form_id' => array( 'type' => 'varchar', 'length' => 255, 'description' => 'Form ID.', ), 'url' => array( 'type' => 'varchar', 'length' => 255, 'description' => 'URL information.', ), 'data' => array( 'type' => 'text', 'size' => 'medium', 'description' => 'Form values', ), 'time' => array( 'type' => 'int', 'unsigned' => TRUE, 'description' => 'Unixtime created', ), ), ); return $schema; } function paranoia_install() { drupal_install_schema('paranoia'); }