我正在尝试为Drupal 7创建一个模块,我需要创建3个表并填充它。但是首先我需要创建它。
在文件mymodule.install中,我有
function mymodule_install() {
}
function mymodule_uninstall() {
}
function myodule_schema() {
$schema['mymodule_table'] = array(
'description' => t('First table'),
'fields' => array(
'id' => array(
'description' => t('My unique identifier'),
'type' => 'int',
'unsigned' => true,
'not null' => true,
),
'list' => array(
'description' => t('list'),
'type' => 'varchar',
'not null' => true,
),
),
'primary key' => array('id'),
);
return $schema;
}
我究竟做错了什么?每次测试模块时,都会禁用它->卸载->性能清除缓存->启用它。
drush devel-reinstall mymodule
快速重新安装模块