id(); $table->string('code')->unique(); $table->enum('type',['fixed','percent'])->default('fixed'); $table->decimal('value',20,2); $table->enum('status',['active','inactive'])->default('inactive'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('coupons'); } }