D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2024_07_13_063003_create_live_locations_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateLiveLocationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('live_locations', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('booking_id'); $table->double('latitude', 10, 7); $table->double('longitude', 10, 7); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('live_locations'); } }