在CakePHP项目中,除了使用自增长的int
类型作为数据表主键,也可以使用UUID
类型。
当保存使用UUID
作为主键的记录时,CakePHP会自动调用 Cake\Utility\Text::uuid()
静态方法来生成一个uuid。
因为不同的数据库系统提供的数据类型并不完全相同,CakePHP提供了一套抽象的数据类型集合来兼容不同的数据库,其中就包括了uuid
。
uuid
Maps to the UUID type if a database provides one, otherwise this will generate a CHAR(36) field.
比如MySQL,并不包含UUID
这一数据类型,因此在设计表结构时,可以把该主键设置为CHAR
类型,长度为36。
执行cake bake
命令,在自动生成的Table类文件中,则可以看到已经映射为了UUID类型。
public function validationDefault(Validator $validator)
{
$validator
->uuid('id')
->allowEmptyString('id', null, 'create');
... ...
}
此时在业务代码中执行Table::save()
方法时,CakePHP会自动生成uuid并存入数据库。