increments('{{ primaryKey }}'); {% else %} $table->id(); {% endif %} {% for field,config in fields %} $table->{{ config.type }}('{{ field }}'){{ config.required == false ? '->nullable()' }}{{ config.index ? '->index()' }}; {% endfor %} {% for field in jsonable %} $table->mediumText('{{ field }}')->nullable(); {% endfor %} {% for field in morphable %} $table->nullableMorphs('{{ field }}', 'morphable_index'); {% endfor %} {% if not model or timestamps %} $table->timestamps(); {% endif %} }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('{{ table }}'); } };