id(); $table->string('token')->nullable(); $table->unsignedBigInteger('user_id')->nullable(); $table->unsignedBigInteger('product_id'); $table->integer('count')->default(1); $table->string('size')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('carts'); } }