File: /home/xedaptot/be.naniguide.com/database/migrations/2021_11_15_152141_remove_vat_from_plans.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class RemoveVatFromPlans extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('plans', function (Blueprint $table) {
$table->dropColumn('vat');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('plans', function (Blueprint $table) {
$table->decimal('vat', 16, 2)->default(0);
});
}
}