{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: /var/www//arsu/database//migrations//2021_10_12_110434_add_col_to_admin_wallet.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddColToAdminWallet extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('admin_wallets', function (Blueprint $table) { $table->float('commission_earned')->default(0); $table->float('inhouse_sell')->default(0); $table->float('delivery_charge_earned')->default(0); $table->float('pending_amount')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('admin_wallets', function (Blueprint $table) { // }); } }
./Ninja\.