id(); $table->string('name', 50); $table->unsignedInteger('min_purchase'); $table->decimal('discount_percentage', 5, 2); $table->text('terms_conditions')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('memberships'); } };