BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
database
/
migrations
📤 Upload
📝 New File
📁 New Folder
Close
Editing: 2024_02_06_095920_create_payment_proofs_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. */ public function up(): void { Schema::create('payment_proofs', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('user_id'); $table->string('order_id'); $table->unsignedBigInteger('plan_id'); $table->decimal('total_amount', 15, 2)->nullable(); // Adjust precision and scale as needed $table->string('proof_image'); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->foreign('plan_id')->references('id')->on('plans')->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('payment_proofs'); } };
Save
Cancel