made all sqlite fields nullable to fix various problems with the difference in sqlite's null functionality

This commit is contained in:
Shawn McCool 2012-03-07 20:52:17 +01:00
parent 5b3031adb0
commit 17ac74d7f8
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ protected function columns(Table $table)
*/ */
protected function nullable(Table $table, Fluent $column) protected function nullable(Table $table, Fluent $column)
{ {
return ($column->nullable) ? ' NULL' : ' NOT NULL'; return ' NULL';
} }
/** /**