schema->table('users_settings', function (Blueprint $table): void { $table->boolean('email_messages')->default(false)->after('email_human'); }); } /** * Reverse the migration */ public function down(): void { $this->schema->table('users_settings', function (Blueprint $table): void { $table->dropColumn('email_messages'); }); } }