e7c0c26b32
add: custom error pages fix: invititation feat: new quick login for first users (UX++) feat: more internal notifications
33 lines
800 B
PHP
33 lines
800 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::table('subscriptions', function (Blueprint $table) {
|
|
$table->string('stripe_feedback')->nullable()->after('stripe_cancel_at_period_end');
|
|
$table->string('stripe_comment')->nullable()->after('stripe_feedback');
|
|
|
|
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::table('subscriptions', function (Blueprint $table) {
|
|
$table->dropColumn('stripe_feedback');
|
|
$table->dropColumn('stripe_comment');
|
|
});
|
|
}
|
|
};
|