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

Commit

Permalink
Merge pull request #58 from fincardy/fix-sqlite-grammar
Browse files Browse the repository at this point in the history
Change SQLite Uuid type from "binary" to "blob"
  • Loading branch information
brendt authored Aug 23, 2018
2 parents e9529b6 + 186c473 commit aadade4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SQLiteGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ class SQLiteGrammar extends IlluminateSQLiteGrammar
{
protected function typeUuid(Fluent $column)
{
return 'binary(16)';
return 'blob(256)';
}
}

0 comments on commit aadade4

Please sign in to comment.