我正在尝试在 Laravel 5.8 中创建外键,当我使用 Artisan 迁移表时,未设置外键。在cities
table和provinces
table中,所有的id字段都是无符号整数。我在 Windows 10 上使用 wamp64。
public function up()
{
Schema::table('users', function (Blueprint $table) {
$table->integer('city_id')->unsigned();
$table->integer('province_id')->unsigned();
// table Foreign Key
$table->foreign('city_id')->references('id')->on('cities');
$table->foreign('province_id')->references('id')->on('provinces');
});
}