我已经为我的网站创建了migration
。但是当我运行php artisan migrate
时会出现该错误
调用未定义的方法CreateCommentsTable :: integer()
我的迁移
public function up()
{
Schema::create('comments', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->integer('post_id');
$table->text('body');
$table->timestamps();
});
}
错误在那一行代码上
$ table-> integer('user_id');