you can use schema module to generate the install file contents.<br><br><div class="gmail_quote">On Thu, Mar 17, 2011 at 9:14 AM, Austin Einter <span dir="ltr">&lt;<a href="mailto:austin.einter@gmail.com">austin.einter@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;"><div>Hi All</div>
<div>I have a small install file as below.</div>
<div> </div>
<div>
<div><i><font color="#000099">&lt;?php<br>function resume_submit_install() <br>{<br>  drupal_install_schema(&#39;resume_table&#39;);<br>}<br>function resume_submit_uninstall() <br>{<br>  drupal_uninstall_schema(&#39;resume_table&#39;);<br>


}<br>function resume_table_schema() <br>{<br>    $schema[&#39;resume_table&#39;] = array(<br>    <br> &#39;fields&#39; =&gt; array(<br>      &#39;uid&#39; =&gt; array(&#39;type&#39; =&gt; &#39;int&#39;, &#39;unsigned&#39; =&gt; TRUE, &#39;not null&#39; =&gt; TRUE, &#39;default&#39; =&gt; 0),<br>


      &#39;name&#39; =&gt; array(&#39;type&#39; =&gt; &#39;varchar&#39;, &#39;not null&#39; =&gt; TRUE, &#39;default&#39; =&gt; &#39;&#39;),<br>   &#39;email&#39; =&gt; array(&#39;type&#39; =&gt; &#39;varchar&#39;, &#39;not null&#39; =&gt; TRUE, &#39;default&#39; =&gt; &#39;&#39;),<br>


   &#39;altemail&#39; =&gt; array(&#39;type&#39; =&gt; &#39;varchar&#39;, &#39;not null&#39; =&gt; TRUE, &#39;default&#39; =&gt; &#39;&#39;),<br>    ),<br> <br>    &#39;indexes&#39; =&gt; array(&#39;uid&#39; =&gt; array(&#39;uid&#39;),),<br>


 <br>    &#39;primary key&#39; =&gt; array(&#39;name&#39;),<br>  );</font></i></div>
<div><i><font color="#000099">  return $schema;<br>}</font></i></div>
<div> </div>
<div> </div></div>
<div>When I install the custom module, it installs without any warning/error.</div>
<div>But on form submit, when I try to save some data, it gives warning (table does not exist). </div>
<div> </div>
<div>Can somebody help me to understand, what could be the issue.</div>
<div> </div>
<div>Thanks</div>
<div>Austin</div>
</blockquote></div><br><br clear="all"><br>-- <br>Regards,<br>Vaibhav Jain<br>