Commit 20f62b5a authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #393 from ShawnMcCool/master

made all sqlite fields nullable to fix various problems with the difference in sqlite's null functionality
parents 5b3031ad 17ac74d7
...@@ -113,7 +113,7 @@ class SQLite extends Grammar { ...@@ -113,7 +113,7 @@ class SQLite extends Grammar {
*/ */
protected function nullable(Table $table, Fluent $column) protected function nullable(Table $table, Fluent $column)
{ {
return ($column->nullable) ? ' NULL' : ' NOT NULL'; return ' NULL';
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment