Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
Added Nullable to Last Name Column. Because in some cases Last Name didn't even exist.
  • Loading branch information
tzsk authored Dec 26, 2016
1 parent d132bac commit 7c9edeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function up()
$table->string('txnid');
$table->string('mihpayid');
$table->string('firstname');
$table->string('lastname');
$table->string('lastname')->nullable();
$table->string('email');
$table->string('phone');
$table->double('amount');
Expand Down

0 comments on commit 7c9edeb

Please sign in to comment.