increments('id'); $table->text('packagename')->nullable(); $table->text('psv')->nullable(); $table->text('direct_active_referrals')->nullable(); $table->text('app_referral')->nullable(); $table->text('first_gen_commission')->nullable(); $table->text('second_gen_commission')->nullable(); $table->text('third_gen_commission')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('affiliate_programs'); } }