Edit File: 2021_11_24_165600_create_plans_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePlansTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('plans', function (Blueprint $table) { $table->id(); $table->string('name')->nullable(); $table->string('logo')->nullable(); $table->string('expected_views')->nullable(); $table->string('price')->nullable(); $table->enum('type' , ['monthly' , 'yearly'])->default('monthly'); $table->enum('available' , ['true' , 'false'])->default('true'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('plans'); } }
Back to File Manager