Skip to content

Commit

Permalink
fix issue on migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
honarkhah committed Nov 6, 2016
1 parent 9395379 commit 8542274
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 8542274

Please sign in to comment.