我已經在custom_notifications.install文件中編寫了下面的代碼。Drupal 7 - module.install文件架構錯誤
當我試圖啓用該模塊時,它給了我錯誤「網站遇到意外錯誤,請稍後再試。」
請幫助我。
function custom_notifications_schema() {
$schema['custom_notification_log'] = array(
'fields' => array(
'cnl' => array('type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE),
'notification_type' => array('type' => 'varchar', 'length' => 64),
'notification_type_id' => array('type' => 'int', 'unsigned' => TRUE),
'uid' => array('type' => 'int', 'unsigned' => TRUE),
'viewed_on' => array('type' => 'int', 'unsigned' => TRUE),
)
);
return $schema;
}
上面的代碼似乎很好..問題是其他地方... –
當我刪除此功能,然後我沒有得到任何錯誤。我認爲有一些錯誤是隻有功能。 –