whoami7 - Manager
:
/
home
/
qbizpnmr
/
test.qbiztax.com
/
database
/
migrations
/
Upload File:
files >> /home/qbizpnmr/test.qbiztax.com/database/migrations/2023_08_14_000000_core_v3017.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. * * @return void */ public function up() { Schema::table('documents', function (Blueprint $table) { $table->string('title')->nullable()->after('contact_country'); $table->string('subheading')->nullable()->after('title'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('documents', function (Blueprint $table) { $table->dropColumn('title'); $table->dropColumn('subheading'); }); } };
Copyright ©2021 || Defacer Indonesia