uuid('id')->primary(); $table->string('type'); $table->decimal('price')->default(0); $table->unsignedInteger('quantity'); $table->string('description'); $table->string('currency_code', 3); $table->boolean('disabled')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('paypal_products'); } };