Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
karir.star4hire.com
/
database
/
migrations
✏️
Editing: 2023_03_18_040248_create_bc_customer_reports_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('bc_customer_reports', function (Blueprint $table) { $table->id(); $table->bigInteger('service_id')->nullable(); $table->string('service_type', 100)->nullable(); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->text('description')->nullable(); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('bc_customer_reports'); } };
💾 Save Changes
❌ Cancel