increments('id'); $table->integer('goods_id')->default(0)->index('goods_id')->comment('商品ID'); $table->integer('m_id')->default(0)->index('m_id')->comment('会员ID'); $table->string('share_img')->default('')->comment('分享二维码'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('goods_shares'); } }