想要一个 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,
)