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');
|
||
|
});
|
||
|
}
|
||
|
};
|