diff --git a/migrations/2016_05_02_193229_create_gateway_status_log_table.php b/migrations/2016_05_02_193229_create_gateway_status_log_table.php index f52baacd..d4bc29c7 100644 --- a/migrations/2016_05_02_193229_create_gateway_status_log_table.php +++ b/migrations/2016_05_02_193229_create_gateway_status_log_table.php @@ -24,7 +24,7 @@ public function up() { Schema::create($this->getLogTable(), function (Blueprint $table) { $table->engine="innoDB"; - $table->uuid('id'); + $table->bigIncrements('id'); $table->uuid('transaction_id'); $table->string('result_code', 10)->nullable(); $table->string('result_message', 255)->nullable();