id(); $table->jsonb('title')->index(); $table->jsonb('description')->nullable(); $table->boolean('is_visible')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('galleries'); } };