id(); $table->string('code')->unique(); $table->string('discount_type')->default('percentage'); $table->string('discount_value'); $table->string('notes')->nullable(); $table->boolean('is_active')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('coupons'); } };