increments('id'); $table->string('type'); $table->string('result'); $table->text('event'); $table->integer('user_id'); $table->string('logable_type'); $table->integer('logable_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('logs'); } }