File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -227,8 +227,8 @@ Command | Description
227
227
` $table->mediumInteger('numbers'); ` | MEDIUMINT equivalent for the database.
228
228
` $table->mediumText('description'); ` | MEDIUMTEXT equivalent for the database.
229
229
` $table->morphs('taggable'); ` | Adds unsigned INTEGER ` taggable_id ` and STRING ` taggable_type ` .
230
- ` $table->nullableMorphs('taggable'); ` | Adds unsigned INTEGER ` taggable_id ` NULL and STRING ` taggable_type ` NULL .
231
- ` $table->nullableTimestamps(); ` | Same as ` timestamps() ` .
230
+ ` $table->nullableMorphs('taggable'); ` | Nullable versions of the ` morphs() ` columns .
231
+ ` $table->nullableTimestamps(); ` | Nullable versions of the ` timestamps() ` columns .
232
232
` $table->rememberToken(); ` | Adds ` remember_token ` as VARCHAR(100) NULL.
233
233
` $table->smallIncrements('id'); ` | Incrementing ID (primary key) using a "UNSIGNED SMALL INTEGER" equivalent.
234
234
` $table->smallInteger('votes'); ` | SMALLINT equivalent for the database.
You can’t perform that action at this time.
0 commit comments