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