whoami7 - Manager
:
/
home
/
n170823s
/
www
/
database
/
migrations
/
Upload File:
files >> /home/n170823s/www/database/migrations/2023_08_09_040707_create_guest_users_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('guest_users', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email'); $table->string('phone'); $table->string('course_id'); $table->string('payment_status')->nullable(); $table->string('transection_id')->nullable(); $table->string('total_amount')->nullable(); $table->string('currency')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('guest_users'); } };
Copyright ©2021 || Defacer Indonesia