| 6 install.php | hook_schema() |
| 7 system.api.php | hook_schema() |
| 8 system.api.php | hook_schema() |
Define the current version of the database schema.
A Drupal schema definition is an array structure representing one or more tables and their related keys and indexes. A schema is defined by hook_schema() which must live in your module's .install file.
By implementing hook_schema() and specifying the tables your module declares, you can easily create and drop these tables on all supported database engines. You don't have to deal with the different SQL dialects for table creation and alteration of the supported database engines.
See the Schema API documentation at http://drupal.org/node/146843 for details on hook_schema(), where database tables are defined.
Return value
A schema definition structure array. For each element of the array, the key is a table name and the value is a table structure definition.
Related topics
File
- developer/
hooks/ install.php, line 140 - Documentation for the installation and update system.
Code
<?php
function hook_schema() {
$schema['node'] = array(
// example (partial) specification for table "node"
'description' => 'The base table for nodes.',
'fields' => array(
'nid' => array(
'description' => 'The primary identifier for a node.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'vid' => array(
'description' => 'The current {node_revisions}.vid version identifier.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'type' => array(
'description' => 'The {node_type} of this node.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'title' => array(
'description' => 'The title of this node, always treated as non-markup plain text.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
),
'indexes' => array(
'node_changed' => array('changed'),
'node_created' => array('created'),
),
'unique keys' => array(
'nid_vid' => array('nid', 'vid'),
'vid' => array('vid'),
),
'primary key' => array('nid'),
);
return $schema;
}
?> Login or register to post comments
Comments
If you need to specify an index key's length
Following is an example syntax:
<?php'indexes' => array('search' => array('search', 25)),
?>
Small correction on syntax
Should be:
<?php'indexes' => array(
'search' => array(array('search', 25)),
);
?>
Note the extra array.
loading a new schema
Load a new schema by enabling and disabling your module may not work. You will have to uninstall the module (as opposed to just disabling it) and then re-enable it in order to trigger the module's install methods where you're running the drupal_install_schema command.
Not need to uninstall
Look in the system table (at the row where name = your_module) and set schema_version to -1
Need to drop tables?
Wouldn't you need to edit the tables in code after you uninstalled, so that you could uninstall, and it would drop the correct tables, and then reinstall and have it pick up the correct ones?
Your hook_schema should
Your hook_schema should always return the updated schema. In other words: If you add a table in hook_update_N, also add it to hook_schema.