Hi:<br><br>How can i install a table in mysql.<br><br>I tried with this script but don&#39;t work.<br><br>function tags_schema() {<br>$schema[&#39;table&#39;] = array(<br>    &#39;description&#39; =&gt; t(&#39;The base table for nodes.&#39;),<br>
    &#39;fields&#39; =&gt; array(<br>      &#39;nid&#39; =&gt; array(<br>        &#39;description&#39; =&gt; t(&#39;The primary identifier for a node.&#39;),<br>        &#39;type&#39; =&gt; &#39;serial&#39;,<br>        &#39;unsigned&#39; =&gt; TRUE,<br>
        &#39;not null&#39; =&gt; TRUE),<br>      &#39;vid&#39; =&gt; array(<br>        &#39;description&#39; =&gt; t(&#39;The current {node_revisions}.vid version identifier.&#39;),<br>        &#39;type&#39; =&gt; &#39;int&#39;,<br>
        &#39;unsigned&#39; =&gt; TRUE,<br>        &#39;not null&#39; =&gt; TRUE,<br>        &#39;default&#39; =&gt; 0),<br>      &#39;type&#39; =&gt; array(<br>        &#39;description&#39; =&gt; t(&#39;The {node_type} of this node.&#39;),<br>
        &#39;type&#39; =&gt; &#39;varchar&#39;,<br>        &#39;length&#39; =&gt; 32,<br>        &#39;not null&#39; =&gt; TRUE,<br>        &#39;default&#39; =&gt; &#39;&#39;),<br>      &#39;title&#39; =&gt; array(<br>        &#39;description&#39; =&gt; t(&#39;The title of this node, always treated a non-markup plain text.&#39;),<br>
        &#39;type&#39; =&gt; &#39;varchar&#39;,<br>        &#39;length&#39; =&gt; 255,<br>        &#39;not null&#39; =&gt; TRUE,<br>        &#39;default&#39; =&gt; &#39;&#39;),<br>      ),<br>    &#39;indexes&#39; =&gt; array(<br>
      &#39;node_changed&#39;        =&gt; array(&#39;changed&#39;),<br>      &#39;node_created&#39;        =&gt; array(&#39;created&#39;),<br>      ),<br>    &#39;unique keys&#39; =&gt; array(<br>      &#39;nid_vid&#39; =&gt; array(&#39;nid&#39;, &#39;vid&#39;),<br>
      &#39;vid&#39;     =&gt; array(&#39;vid&#39;)<br>      ),<br>    &#39;primary key&#39; =&gt; array(&#39;nid&#39;),<br>    );<br>}<br><br>function tags_install() {<br>// Crea mi tabla<br>drupal_install_schema(&#39;tags&#39;);<br>
}<br><br>function tags_uninstall() {<br>// Borra mi tabla<br>drupal_uninstall_schema(&#39;tags&#39;);<br>}<br>?&gt;<br>