iotekas / uuids
该包最新版本(dev-master)没有可用的许可证信息。
UUID for Laravel
dev-master
2020-08-14 16:16 UTC
Requires
- php: ~5.6|~7.0
- illuminate/support: ^5
- ramsey/uuid: ^3
This package is auto-updated.
Last update: 2024-09-15 01:23:22 UTC
README
使用此包在您的模型上使用uuid作为主键。
该包使用ramsey/uuid包创建UUID-4密钥,并自动将密钥分配给$id字段。这是一个配置几乎为零的简单包。还有更多高级包,例如:https://github.com/spatie/laravel-binary-uuid
<?php use iotek\UsesUuid\Uuids; class YourModel extends Model { use Uuids;
您还需要编辑您的迁移文件。'id'列应设置为uuid或字符串。在全新的Laravel中,您只需要
$table->uuid('id')->primary(); // OR $table->string('id')->primary();