File: /home/xedaptot/be.naniguide.com/database/migrations/2021_09_21_024909_add_trial_to_plans.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddTrialToPlans extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('plans', function (Blueprint $table) {
$table->integer('trial_amount')->nullable();
$table->string('trial_unit')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('plans', function (Blueprint $table) {
$table->dropColumn('trial_amount');
$table->dropColumn('trial_unit');
});
}
}