We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b2a17a commit 0b9a9b8Copy full SHA for 0b9a9b8
src/Schema/DB2SchemaGrammar.php
@@ -647,6 +647,19 @@ protected function typeBinary(Fluent $column)
647
return 'blob';
648
}
649
650
+ /**
651
+ * Create the column definition for a UUID type
652
+ *
653
+ * @param \Illuminate\Support\Fluent $column
654
+ * @return string
655
+ */
656
+ protected function typeUuid(Fluent $column)
657
+ {
658
+ return 'char(36)';
659
+ }
660
+
661
662
663
/**
664
* Get the SQL for a nullable column modifier.
665
*
0 commit comments