Commit 17ac74d7 authored by Shawn McCool's avatar Shawn McCool

made all sqlite fields nullable to fix various problems with the difference in...

made all sqlite fields nullable to fix various problems with the difference in sqlite's null functionality
parent 5b3031ad
......@@ -113,7 +113,7 @@ class SQLite extends Grammar {
*/
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