PATH:
home
/
rwabteecom
/
project_11
/
database
/
migrations
/
Editing: 2023_05_08_070541_create_plans_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up(): void { Schema::create('plans', function (Blueprint $table) { $table->id(); $table->json("title"); $table->longText("description")->nullable(); $table->integer("price")->nullable(); $table->integer("duration_in_days")->nullable(); $table->boolean("status")->default(1); $table->boolean("is_free_plan")->default(0); $table->integer("order")->default(1); $table->softDeletes(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('plans'); } };
SAVE
CANCEL