Can I get one of you postgre aficionados to translate this SQL statement into whatever works on postgre for me?<br><br>DROP TABLE IF EXISTS subscriptions_holding;<br>CREATE TABLE subscriptions_holding (<br>&nbsp; rid int(11) NOT NULL auto_increment COMMENT 'Unique row ID',
<br>&nbsp; content blob NOT NULL COMMENT 'The node array',<br>&nbsp; type tinytext NOT NULL COMMENT 'New node or comment',<br>&nbsp; op tinytext NOT NULL COMMENT 'The operation on the node',<br>&nbsp; uid int(11) NOT NULL default '0' COMMENT 'The person performing the operation',
<br>&nbsp; PRIMARY KEY&nbsp; ('rid')<br>);<br><br>I'm implementing cron initiated mailings for the Subscriptions module.<br><br>Thanks,<br clear="all"><br>-- <br>Dan Ziemecki<br><br>