public function up(): void { Schema::table('users', function (Blueprint $table) { $table->boolean('is_super')->default(false); }); }