boolean('stripe_trial_already_ended')->default(false)->after('stripe_cancel_at_period_end'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('subscriptions', function (Blueprint $table) { $table->dropColumn('stripe_trial_already_ended'); }); } };