Skip to content

Commit

Permalink
More clarifications to modification, renaming with an enum column
Browse files Browse the repository at this point in the history
  • Loading branch information
EricTendian committed Feb 25, 2016
1 parent cecbd4b commit 41a0328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ We could also modify a column to be nullable:
$table->string('name', 50)->nullable()->change();
});

> **Note:** Modifying any column in a table with an `enum` column is not currently supported.
> **Note:** Modifying any column in a table that also has a column of type `enum` is not currently supported.
<a name="renaming-columns"></a>
#### Renaming Columns
Expand All @@ -267,7 +267,7 @@ To rename a column, you may use the `renameColumn` method on the Schema builder.
$table->renameColumn('from', 'to');
});

> **Note:** Renaming any column in a table with an `enum` column is not currently supported.
> **Note:** Renaming any column in a table that also has a column of type `enum` is not currently supported.
<a name="dropping-columns"></a>
### Dropping Columns
Expand Down

0 comments on commit 41a0328

Please sign in to comment.