bigIncrements('id'); $table->string('origin'); $table->string('destination'); $table->enum('status',['enabled','disables']); $table->integer('hit'); $table->string('referer'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('utms'); } }