increments('id'); $table->integer('user_id')->nullable(); $table->string('code', 150)->nullable(); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->integer('discount_amount')->nullable(); $table->integer('discount_percentage')->nullable(); $table->text('Image')->nullable(); $table->integer('max_users')->nullable(); $table->integer('used_count')->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->text('details')->nullable(); $table->string('user_type', 150)->nullable(); $table->string('slug', 150)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('crm_coupon_coupons'); } }