Hi,

I don't know how all this works because I'm kind of new... but I was trying to install "Node Teaser" in dupal 5.7 using PostgreSQL 7.4.7 and I had some errors (warnings and user_warnings about query fail and so on) and I was not able to make it run...

After comparing the code of "nodeteaser.install" with the installer of other modules I started to change things and now it seems that it's working :) there are only small changes to do.. this is the new code:


    ...

    case 'pgsql':
      db_query("CREATE TABLE {nodeteaser} (
  							nid integer NOT NULL default '0',
  							teaser text NOT NULL,
  							PRIMARY KEY (nid)
								);");
      break;

    ...

I don't know if it's the correct place to post this, but I hope it helps someone.