Skip to content

Commit

Permalink
Add selcom_transaction_id to the table
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceandy committed Sep 15, 2021
1 parent 1155b94 commit c9d5d78
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log

## [v0.0.2](https://github.com/bryceandy/laravel-selcom/compare/v0.0.1...v0.0.2) - September 15, 2021
* Add `selcom_transaction_id` to the payments table

## v0.0.1 - September 15, 2021
* Checkout API
* Checkout API
* Initial release
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ public function up()
{
Schema::create('selcom_payments', function (Blueprint $table) {
$table->id();
$table->integer('amount');
$table->string('order_id')->unique();
$table->string('transid')->unique();
$table->integer('amount');
$table->string('selcom_transaction_id')->nullable();
$table->string('user_id')->nullable();
$table->string('gateway_buyer_uuid')->nullable();
$table->string('payment_status')->nullable();
Expand Down

0 comments on commit c9d5d78

Please sign in to comment.