Skip to content
This repository was archived by the owner on Dec 10, 2018. It is now read-only.

Commit aadade4

Browse files
authored
Merge pull request #58 from fincardy/fix-sqlite-grammar
Change SQLite Uuid type from "binary" to "blob"
2 parents e9529b6 + 186c473 commit aadade4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SQLiteGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ class SQLiteGrammar extends IlluminateSQLiteGrammar
99
{
1010
protected function typeUuid(Fluent $column)
1111
{
12-
return 'binary(16)';
12+
return 'blob(256)';
1313
}
1414
}

0 commit comments

Comments
 (0)