for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
/**
* @see \App\Models\Branch
*/
return new class extends Migration
{
* Run the migrations.
*
* @return void
public function up()
Schema::create('branches', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->text('address');
$table->string('address_latitude');
$table->string('address_longitude');
$table->string('google_map_url')->nullable();
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('branches');
};