id(); $table->unsignedInteger("user_id"); $table->unsignedInteger("goods_id"); $table->string("extra", 1000); $table->unsignedInteger("count")->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('cart'); } };