Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from MuluhGodson/patch-5
Browse files Browse the repository at this point in the history
enum data truncate fix
  • Loading branch information
yondifon committed Oct 17, 2020
2 parents 6e23b94 + f6d1b41 commit 6fc6c08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function up()
Schema::table(
'mesomb_transactions',
function (Blueprint $table) {
$table->enum('direction', [0, -1, 1 ])->nullable();
$table->enum('direction', ["0", "-1", "1"])->nullable();
}
);
}
Expand Down

0 comments on commit 6fc6c08

Please sign in to comment.