feat(wip member dashboard)
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 26h10m31s

This commit is contained in:
2026-04-08 15:17:05 +02:00
parent 341032162a
commit aea22e72af
16 changed files with 711 additions and 51 deletions

View File

@@ -0,0 +1,28 @@
<?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('services_memberships', function (Blueprint $table) {
$table->boolean('is_active')->default(false)->after('membership_id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('services_memberships', function (Blueprint $table) {
$table->dropColumn('is_active');
});
}
};