increments('id'); $table->string('name')->nullable(false); $table->string('slug', 50)->nullable(false); $table->longText('template')->nullable(false); $table->timestamps(); $table->index('slug'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('incident_templates'); } }