id(); $table->string('name')->nullable(); $table->text('description')->nullable(); $table->text('content')->nullable(); $table->boolean('is_active')->default(false)->index(); $table->tinyInteger('order')->default(10)->unsigned()->index(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('curated_register_templates'); } };