Skip to content

Commit

Permalink
fix 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Nov 7, 2024
1 parent 10961cd commit d9ab25d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Config/CheckoutCod.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
*
* The version of the package
*/
'version' => '1.0.5',
'version' => '1.0.6',
/**
*
* The version number of the package
*/
'versionNum' => '105',
'versionNum' => '106',

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
{
//
Schema::create("orders_cod", function (Blueprint $table) {
$table->autoIncrement("id");
$table->bigIncrements("id");
$table->unsignedBigInteger("order_id")->comment("Order ID");
// add create and update datetime
$table->timestamps();
Expand Down

0 comments on commit d9ab25d

Please sign in to comment.