id(); $table->foreignId('planner_id')->constrained()->cascadeOnDelete(); $table->string('stripe_subscription_id')->unique(); $table->string('stripe_customer_id'); $table->string('status'); $table->string('plan'); $table->timestamp('trial_ends_at')->nullable(); $table->timestamp('ends_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('subscriptions'); } };