Hi All
My install file looks as below . While I am installing the module, ideally table should be created, but its not getting created. What could be the issue, any idea please ?
<?php
function resume_submit_schema()
{
$schema = array();
$schema['table_xyz'] = array(
'fields' => array(
'uid' => array(
'type' => 'int',
'not null' => TRUE
),
'id' => array(
'type' => 'int',
'not null' => TRUE
),
'exp' => array(
'type' => 'int',
'not null' => TRUE
),
),
);
return $schema;
}
Thanks
Kamal
NECS