--- inactive_user.install.orig  2006-05-09 18:19:42.000000000 -0500
+++ inactive_user.install   2007-05-09 13:31:11.409146600 -0500
@@ -15,6 +15,19 @@ function inactive_user_install() {
         PRIMARY KEY (uid)
         ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
       break;
+    case 'pgsql':
+      db_query("CREATE TABLE {inactive_users} (
+        uid integer NOT NULL default '0',
+        notified_admin integer NOT NULL default '0',
+        notified_user integer NOT NULL default '0',
+        warned_user_block_timestamp integer NOT NULL default '0',
+        notified_user_block integer NOT NULL default '0',
+        notified_admin_block integer NOT NULL default '0',
+        warned_user_delete_timestamp integer NOT NULL default '0',
+        protected integer NOT NULL default '0',
+        PRIMARY KEY (uid)
+        ) ");
+      break;
   }
 }
