मैं ड्रुपल 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
जल्दी से अपने मॉड्यूल पुनर्स्थापित करने के लिए