<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateDeliveryHistoriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('delivery_histories', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('order_id')->nullable();
$table->bigInteger('deliveryman_id')->nullable();
$table->dateTime('time')->nullable();
$table->string('longitude')->nullable();
$table->string('latitude')->nullable();
$table->string('location')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('delivery_histories');
}
}