whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
database
/
migrations
/
Upload File:
files >> /home/kckglobal/public_html/portal/database/migrations/2024_03_22_104517_create_qrcode_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('qrcode', function (Blueprint $table) { $table->id(); $table->enum('qr_enable', ['1', '0'])->default('1'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('qrcode'); } };
Copyright ©2021 || Defacer Indonesia