whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
database
/
migrations
/
Upload File:
files >> /home/kckglobal/public_html/portal/database/migrations/2024_04_15_112542_add_location_details.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::table('users', function (Blueprint $table) { $table->text('location_details')->nullable()->after('register_ip'); }); Schema::table('companies', function (Blueprint $table) { $table->text('location_details')->nullable()->after('register_ip'); }); } /** * Reverse the migrations. */ public function down(): void { // } };
Copyright ©2021 || Defacer Indonesia