如何在 laravel 迁移中添加 table 评论

how to add a table comment in laravel migration

我怎样才能添加一条像这条评论一样的评论。 我的代码:

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