whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
database
/
migrations
/
Upload File:
files >> /home/kckglobal/public_html/portal/database/migrations/2024_11_05_051148_image_offline_payment.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; use App\Models\Task; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('offline_payment_methods', function (Blueprint $table) { $table->string('image')->nullable()->after('name'); }); Schema::table('invoice_payment_details', function (Blueprint $table) { $table->string('image')->nullable()->after('title'); }); } /** * Reverse the migrations. */ public function down(): void { // } };
Copyright ©2021 || Defacer Indonesia