mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-05 22:34:51 +00:00
20 lines
343 B
PHP
20 lines
343 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use App\Services\SnowflakeService;
|
|
|
|
trait HasSnowflakePrimary
|
|
{
|
|
public static function bootHasSnowflakePrimary()
|
|
{
|
|
static::saving(function ($model) {
|
|
if (is_null($model->getKey())) {
|
|
$keyName = $model->getKeyName();
|
|
$id = SnowflakeService::next();
|
|
$model->setAttribute($keyName, $id);
|
|
}
|
|
});
|
|
}
|
|
}
|