diff --git a/src/Schema/DB2SchemaGrammar.php b/src/Schema/DB2SchemaGrammar.php index b80ad19..0191a2a 100644 --- a/src/Schema/DB2SchemaGrammar.php +++ b/src/Schema/DB2SchemaGrammar.php @@ -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. *