{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: /var/www//arsu/database///migrations//2023_02_02_171034_add_tax_type_to_carts.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddTaxTypeToCarts extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('carts', function (Blueprint $table) { $table->string('tax_model', 20)->after('discount')->default('exclude'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('carts', function (Blueprint $table) { Schema::dropIfExists('tax_model'); }); } }
./Ninja\.