Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
- Add UUID type
  • Loading branch information
bennettblack committed Jun 5, 2023
1 parent 1b2a17a commit 0b9a9b8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Schema/DB2SchemaGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,19 @@ protected function typeBinary(Fluent $column)
return 'blob';
}

/**
* Create the column definition for a UUID type
*
* @param \Illuminate\Support\Fluent $column
* @return string
*/
protected function typeUuid(Fluent $column)
{
return 'char(36)';
}



/**
* Get the SQL for a nullable column modifier.
*
Expand Down

0 comments on commit 0b9a9b8

Please sign in to comment.