D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
euphoriahub.store
/
database
/
migrations
/
Filename :
2021_10_12_110434_add_col_to_admin_wallet.php
back
Copy
<?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) { // }); } }