increments('fuel_price_id'); $table->uuid('fuel_price_uuid')->unique(); $table->integer('station_id'); $table->string('fuel_code', 50); $table->string('fuel_name', 50); $table->double('price'); $table->timestamps(); $table->boolean('is_active')->default(1); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('station_fuel_prices'); } }