engine = 'InnoDB'; $table->increments('id'); $table->string('name'); $table->string('slug'); $table->longText('template'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down() { Schema::drop('incident_templates'); } }