id(); $table->string('type'); $table->decimal('price'); $table->enum('status',['active','inactive'])->default('active'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('shippings'); } }