且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在Laravel 5迁移中向表(而非列)添加注释?

更新时间:2022-06-13 07:53:46

当前,Laravel不允许(没有功能)在表上添加注释,因此您必须在迁移中使用替代方法:

Currently, Laravel does not allow (does not have functionality) to put comment on tables, so You have to use workaround in Your migration:

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