increments('id'); $table->tinyInteger('component')->default(1); $table->string('name'); $table->tinyInteger('status', 1)->default(1); $table->longText('message'); $table->timestamps(); $table->softDeletes(); $table->index('component'); $table->index('status'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('incidents'); } }