Cool, thanks.<br><br><div class="gmail_quote">On Wed, Feb 23, 2011 at 12:36 AM, Daniel-Constantin Mierla <span dir="ltr">&lt;<a href="mailto:miconda@gmail.com">miconda@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hello,<div class="im"><br>
<br>
On 2/23/11 12:30 AM, thrillerbee wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Can anyone point me to the db schema for the new pipelimit module?<br>
</blockquote>
<br></div>
seems I forgot to add it to db creation script. I will fix that in the next days. Meanwhile you can use:<br>
<br>
INSERT INTO version (table_name, table_version) values (&#39;pl_pipes&#39;,&#39;1&#39;);<br>
CREATE TABLE pl_pipes (<br>
  id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,<br>
  pipeid VARCHAR(64) DEFAULT &#39;&#39; NOT NULL,<br>
  algorithm VARCHAR(32) DEFAULT &#39;&#39; NOT NULL,<br>
  plimit INT DEFAULT 0 NOT NULL,<br>
  CONSTRAINT pipeid_idx UNIQUE (pipeid)<br>
) ENGINE=MyISAM;<br>
<br>
This is inside sources, modules/pipelimit/pl_db.c<br>
<br>
Thanks, Daniel<br><font color="#888888">
<br>
-- <br>
Daniel-Constantin Mierla<br>
<a href="http://www.asipto.com" target="_blank">http://www.asipto.com</a><br>
<br>
</font></blockquote></div><br>