17 lines
199 B
PHP
17 lines
199 B
PHP
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
trait UuidPrimaryKey {
|
|
|
|
public function getKeyType()
|
|
{
|
|
return 'string';
|
|
}
|
|
|
|
public function getIncrementing()
|
|
{
|
|
return false;
|
|
}
|
|
}
|