id(); $table->foreignId('user_id'); $table->string('type'); $table->string('stripe_id')->unique(); $table->string('stripe_status'); $table->string('stripe_price')->nullable(); $table->integer('quantity')->nullable(); $table->timestamp('trial_ends_at')->nullable(); $table->timestamp('ends_at')->nullable(); $table->timestamps(); $table->index(['user_id', 'stripe_status']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('subscriptions'); } };