我想为一个项目创建一些可评论的模型,但我找不到任何参考来创建评论迁移脚本,我只在 vimeo 上找到了这个视频:Laravel 4 - Eloquent Collections & Polymorphic Relations。
我应该明确添加多态列吗?
Schema::create('comments',function($table){
$table->increments('id');
$table->text('body');
$table->string('commentable_type');
$table->integer('commentable_id');
$table->timestamps();
});
当键是外键时,构建器确实希望程序员出现问题,例如$table->foreign('user_id')->references('id')->on('users');