Index: feedapi.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/feedapi.install,v
retrieving revision 1.5.2.21.2.20
diff -u -p -r1.5.2.21.2.20 feedapi.install
--- feedapi.install	12 Aug 2009 19:02:34 -0000	1.5.2.21.2.20
+++ feedapi.install	19 Aug 2009 14:53:45 -0000
@@ -28,34 +28,42 @@ function feedapi_schema() {
         'type' => 'text',
         'not null' => TRUE),
       'feed_type' => array(
+        'description' => 'Always XML feed. Not used',
         'type' => 'varchar',
         'not null' => TRUE,
         'default' => 'XML feed',
         'length' => '50'),
       'processors' => array(
+        'description' => 'List of enabled processors',
         'type' => 'varchar',
         'not null' => TRUE,
         'default' => '',
         'length' => '255'),
       'parsers' => array(
+        'description' => 'List of enabled parsers',
         'type' => 'varchar',
         'not null' => TRUE,
         'default' => '',
         'length' => '255'),
       'next_refresh_time' => array(
+        'description' => 'Timestamp of the most earlier possible next refresh time',
         'type' => 'int',
         'unsigned' => TRUE,
         'default' => 0,
         'not null' => TRUE),
       'hash' => array(
+        'description' => 'Hash of the feed content',
         'type' => 'varchar',
         'length' => '32'),
       'link' => array(
+        'description' => 'Link to the source site of the feed',
         'type' => 'text'),
       'settings' => array(
+        'description' => 'Various settings of the feed',
         'type' => 'text',
         'size' => 'big'),
       'half_done' => array(
+        'description' => 'Indicates if not of the feed items were processed at the last cron run',
         'type' => 'int',
         'size' => 'tiny'),
     ),
@@ -68,21 +76,26 @@ function feedapi_schema() {
     'description' => 'Statistics values over the time about the feeds',
     'fields' => array(
       'id' => array(
+        'description' => 'Unique identifier for statistics data',
         'type' => 'int',
         'not null' => TRUE,
         'default' => 0),
       'type' => array(
+        'description' => 'Type of the data, eg. process_time, memory_increase',
         'type' => 'varchar',
         'length' => 64,
         'not null' => TRUE),
       'timestamp' => array(
+        'description' => 'Timestamp of the data',
         'type' => 'int',
         'not null' => TRUE),
       'time' => array(
+        'description' => 'Time of the data',
         'type' => 'varchar',
         'length' => 20,
         'not null' => TRUE),
       'value' => array(
+        'description' => 'Value of the data',
         'type' => 'int'),
     ),
     'indexes' => array(
