From 85422744b9d319b54cca246532d9b720f4f7b5b8 Mon Sep 17 00:00:00 2001 From: MohammadReza Honarkhah Date: Sun, 6 Nov 2016 15:28:48 +0330 Subject: [PATCH] fix issue on migrations --- .../2016_05_02_193229_create_gateway_status_log_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();