diff --git a/html/sites/all/modules/contrib/activity/activity.install b/html/sites/all/modules/contrib/activity/activity.install
index 7167442..6837e1e 100644
--- a/html/sites/all/modules/contrib/activity/activity.install
+++ b/html/sites/all/modules/contrib/activity/activity.install
@@ -75,6 +75,46 @@ function activity_schema() {
     // UGG!!!
     'primary key' => array('amid', 'module', 'value'),
   );
+  $schema['activity_comments'] = array(
+   'description' => t('Store comments left on an activity ID.'),
+   'fields' => array(
+      'acid' => array(
+        'description' => t('The unique ID that represents this comment.'),
+        'not null' => TRUE,
+        'type' => 'serial',
+      ),
+     'amid' => array(
+        'default' => 0,
+        'description' => t('The {activity}.aid that represents this activity.'),
+        'not null' => TRUE,
+        'type' => 'int',
+      ),
+      'uid' => array(
+        'default' => 0,
+        'description' => t('The {users}.uid of the user leaving a comment on this activity.'),
+        'not null' => TRUE,
+        'type' => 'int',
+      ),
+      'timestamp' => array(
+        'default' => 0,
+        'description' => t('The time the comment was created, as a Unix timestamp.'),
+        'not null' => TRUE,
+        'type' => 'int',
+      ),
+      'comment' => array(
+        'description' => t('The comment body.'),
+        'not null' => TRUE,
+        'size' => 'big',
+        'type' => 'text',
+      ),
+    ),
+    'primary key' => array('acid'),
+    'indexes' => array(
+      'amid' => array('amid'),
+      'uid' => array('uid'),
+    ),
+  );
+
   return $schema;
 }
 
