Index: activitystream.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/activitystream/activitystream.install,v
retrieving revision 1.3.2.2.2.1
diff -a -u -r1.3.2.2.2.1 activitystream.install
--- activitystream.install	16 Aug 2008 08:51:42 -0000	1.3.2.2.2.1
+++ activitystream.install	14 Sep 2008 22:00:04 -0000
@@ -37,7 +37,9 @@
        'module' => array('type' => 'varchar', 'length' => '255', 'not null' => FALSE),
        'guid' => array('type' => 'varchar', 'length' => '32', 'not null' => TRUE),
        'link' => array('type' => 'varchar', 'length' => '255'),
-       'data' => array('type' => 'text')),
+       'data' => array('type' => 'text'),
+       'changed' => array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'disp-width' => '11'),
+    ),
     'primary key' => array('guid'),
   );
 
@@ -84,4 +86,4 @@
   $ret[] = update_sql("ALTER TABLE {activitystream} ADD COLUMN `changed` int(11) NOT NULL default '0'");
   $ret[] = update_sql("ALTER TABLE {activitystream} ADD KEY `nid` (`nid`)");
   return $ret;
-}
\ No newline at end of file
+}
