Laravel - Migrations - Column Method Morphs
The morphs
method is a convenience method that adds a {column}_id
UNSIGNED BIGINT
equivalent column and a {column}_type
VARCHAR
equivalent column.
This method is intended to be used when defining the columns necessary for a polymorphic Eloquent relationship. In the following example, taggable_id
and taggable_type
columns would be created:
$table->morphs('taggable');