Skip to content

Commit 86bee9b

Browse files
committed
fix wording
1 parent d1d811b commit 86bee9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

migrations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ Command | Description
227227
`$table->mediumInteger('numbers');` | MEDIUMINT equivalent for the database.
228228
`$table->mediumText('description');` | MEDIUMTEXT equivalent for the database.
229229
`$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.
232232
`$table->rememberToken();` | Adds `remember_token` as VARCHAR(100) NULL.
233233
`$table->smallIncrements('id');` | Incrementing ID (primary key) using a "UNSIGNED SMALL INTEGER" equivalent.
234234
`$table->smallInteger('votes');` | SMALLINT equivalent for the database.

0 commit comments

Comments
 (0)