Skip to content

Commit

Permalink
Merge pull request #138 from ibnsultan/main
Browse files Browse the repository at this point in the history
fix: data type mismatch in the `subscriptions` migration
  • Loading branch information
tnylea authored Nov 6, 2024
2 parents 3c289ef + 9bb9827 commit 16d9709
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 16d9709

Please sign in to comment.