whoami7 - Manager
:
/
home
/
n170823s
/
public_html
/
database
/
migrations
/
Upload File:
files >> //home/n170823s/public_html/database/migrations/2023_08_08_090609_create_payments_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('payments', function (Blueprint $table) { $table->id(); $table->string('user_id'); $table->string('cart_id'); $table->string('course_id'); $table->string('transection_id'); $table->string('receipt_url'); $table->string('amount'); $table->string('currency'); $table->string('status'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('payments'); } };
Copyright ©2021 || Defacer Indonesia