id(); $table->string('title'); $table->string('slug'); $table->json('description'); $table->boolean('is_active'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('divisions'); } };