increments('id'); $table->string('coupon_code', 255)->nullable(); $table->integer('discount')->nullable(); $table->enum('status', [Active])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('coupons'); } }