Tôi đang cố gắng tạo một mô-đun cho Drupal 7 và tôi cần tạo 3 bảng và điền vào bảng. Nhưng trước tiên tôi cần tạo ra nó.
Trong tập tin mymodule.install tôi đã có
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;
}
Tôi đang làm gì sai? Mỗi lần tôi kiểm tra mô-đun, tôi tắt nó -> gỡ cài đặt -> Xóa bộ nhớ cache hiệu năng -> kích hoạt nó.
drush devel-reinstall mymodule
để nhanh chóng cài đặt lại mô-đun của mình