public function up()
{
    Schema::table('users', function (Blueprint $table) {
        $table->boolean('is_banned')->default(0); // 0 = not banned, 1 = banned
    });
}

public function down()
{
    Schema::table('users', function (Blueprint $table) {
        $table->dropColumn('is_banned');
    });
}