如何在 Laravel 5 迁移中向 table(不是列)添加注释?

How to add comment to table (not column) in Laravel 5 migration?

如何在 Laravel 5 迁移中向 table(ot 列)添加注释?

我目前知道如何在列中添加评论,例如:

$table->tinyInteger('status')->comment('0: requested; -1: rejected; 1:confirmed');

但是 table 呢?

目前,Laravel 不允许(没有功能)对表进行评论,因此您必须在迁移中使用解决方法:

DB::statement("ALTER TABLE `<YOUR_TABLE>` comment '<COMMENT>'");

目前没有任何选项可以添加 table 注释,例如列添加,但是在您想要将注释添加到 table 之后,您必须使用 "DB"将评论添加到 table.

例如,

如果您想将评论添加到网站 table,则可以通过以下语法将评论添加到 table。

DB::select("ALTER TABLE website COMMENT = 'This table contains the website information for the application'");

注意: 在使用上面的行之前,您必须先迁移网站/您的 table 然后 n 才能使用它。