int(3) フィールドが必要です。drupal スキーマでは、次のように定義します。
'response_code' => array(
'description' => 'The API response code',
'type' => 'int',
'length' => 3,
'unsigned' => TRUE,
'not null' => FALSE,
),
しかし、mysql データベースに int(10) フィールドを作成します。
CREATE TABLE `log` (
`response_code` int(10) unsigned DEFAULT NULL,
)