Drupal 6 module install file not creating tables in database
I'm using the Schema API to create tables for my module on Drupa 6.17, but the tables just do not get created in the database. I have the Schema module installed, and it tells me that while the schema for my module is recognized, its table is not in the database. It comes up under Missing: Tables in the schema that are not present in the database. test * test_table Here are the contents for my test.install file. <?php // $Id$ function test_schema() { $schema['test_table'] = array( 'description' => t('Test table'), 'fields' => array( 'nid' => array( 'description' => t('test field'), 'type' =>