使用 Drupal 6 模式 API,如何指定 int 数据类型的确切大小?例如,我可以在 MySQL 中执行以下查询:
create table test (foo int(11) unsigned not null);
drupal 6 模式 API 只给了我这些固定大小的选项:小、小、正常、中、大。
我想创建一个大小为 11 的 'int' 数据类型,以匹配 'created' 字段中的默认 drupal 'users' 表。
使用 Drupal 6 模式 API,如何指定 int 数据类型的确切大小?例如,我可以在 MySQL 中执行以下查询:
create table test (foo int(11) unsigned not null);
drupal 6 模式 API 只给了我这些固定大小的选项:小、小、正常、中、大。
我想创建一个大小为 11 的 'int' 数据类型,以匹配 'created' 字段中的默认 drupal 'users' 表。