PATH:
home
/
rwabteecom
/
public_html
/
database
/
migrations
/
Editing: 2024_04_02_054648_add_steps_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->integer('steps')->default(1)->after('is_active'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('users', function (Blueprint $table) { $table->dropColumn('steps'); }); } };
SAVE
CANCEL