Skip to content

Commit

Permalink
fix: data type mismatch with the plans.id colums
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnsultan authored Oct 27, 2024
1 parent e7e1e8d commit 9bb9827
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function up(): void
Schema::create('subscriptions', function (Blueprint $table) {
$table->id();
$table->morphs('billable');
$table->unsignedBigInteger('plan_id');
$table->unsignedInteger('plan_id');
$table->string('vendor_slug');
$table->string('vendor_product_id')->nullable();
$table->string('vendor_transaction_id')->nullable();
Expand Down

0 comments on commit 9bb9827

Please sign in to comment.