PATH:
home
/
rwabteecom
/
project_11
/
database
/
migrations
/
Editing: 2024_04_3_191047_add_plans_to_users_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('users', function (Blueprint $table) { $table->string('is_subscribed_to_free_plan')->nullable(); $table->string('current_plan_expired_at')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { }); } };
SAVE
CANCEL