我試圖創建數據透視表,外鍵,這是我在Laravel做出遷移: public function up()
{
Schema::create('player_position', function (Blueprint $table) {
$table->integer('player_id')->unsigned()->index();
$table->integ
我的表「sales_order_details」具有id字段具有缺省值0整數「INT(10)」。我需要將其更改爲遷移中的主要自動增量密鑰。 我試圖以下列方式: public function up()
{
Schema::table('sales_order_details', function (Blueprint $table){
$table->integ