Edit File: 2023_10_25_135900_create_cancel_reasons_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('cancel_reasons', function (Blueprint $table) { $table->id(); $table->text('name'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('cancel_reasons'); } };
Back to File Manager