increments('id'); $table->text('offered_by')->nullable(); $table->text('coupan_type')->nullable(); $table->text('coupan_code')->nullable(); $table->text('description')->nullable(); $table->text('amount')->nullable(); $table->text('status')->nullable(); $table->text('product_ids')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('coupans'); } }