1 | <?php |
||
7 | class Blueprint extends BaseBlueprint |
||
8 | { |
||
9 | /** |
||
10 | * Create a new uuid column on the table, of type binary(16) |
||
11 | * |
||
12 | * @link https://www.percona.com/blog/2014/12/19/store-uuid-optimized-way/ Store UUID in an optimized way |
||
13 | * |
||
14 | * @param string $column |
||
15 | * |
||
16 | * @return \Illuminate\Support\Fluent |
||
17 | */ |
||
18 | 1 | public function efficientUuid($column) |
|
22 | } |
||
23 |