Index: favorite_nodes.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/favorite_nodes/favorite_nodes.install,v
retrieving revision 1.3.2.1
diff -b -u -p -r1.3.2.1 favorite_nodes.install
--- favorite_nodes.install	20 Nov 2007 04:29:13 -0000	1.3.2.1
+++ favorite_nodes.install	29 Sep 2008 15:35:53 -0000
@@ -17,7 +17,13 @@ function favorite_nodes_install() {
         ");
       break;
     case 'pgsql':
-      // TODO: need someone to do this on PostgreSQL
+      $resul = db_query("CREATE TABLE {favorite_nodes} (
+          nid     INT NOT NULL,
+          uid     INT NOT NULL,
+          last    INT,
+          PRIMARY KEY (nid, uid)
+          );
+        ");
       break;
   }
 }
