how to add a table comment in laravel migration

Viewed 144

enter image description here enter image description here

How can i add a comment Like this Comment. my Code:

$table->string('stock_type');
2 Answers
$table->string('field')->comment('some comment');
$table->string('stock_type')->comment('this is comment');
Related