<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateRefundRequestsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('refund_requests', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('order_details_id');
$table->unsignedBigInteger('customer_id');
$table->string('status');
$table->float('amount');
$table->unsignedBigInteger('product_id');
$table->unsignedBigInteger('order_id');
$table->longText('refund_reason');
$table->text('images')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('refund_requests');
}
}