Merge pull request #393 from ShawnMcCool/master
made all sqlite fields nullable to fix various problems with the difference in sqlite's null functionality
This commit is contained in:
commit
20f62b5a1d
|
@ -113,7 +113,7 @@ protected function columns(Table $table)
|
|||
*/
|
||||
protected function nullable(Table $table, Fluent $column)
|
||||
{
|
||||
return ($column->nullable) ? ' NULL' : ' NOT NULL';
|
||||
return ' NULL';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue