{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: /var/www//arsu/database//migrations//2022_01_22_101601_change_cart_col_type.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class ChangeCartColType extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('carts', function (Blueprint $table) { $table->float('price')->change(); $table->float('tax')->change(); $table->float('discount')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('carts', function (Blueprint $table) { // }); } }
./Ninja\.