increments('id'); $table->string('username', 255)->nullable(); $table->string('amount', 255)->nullable(); $table->string('payment_thro', 255)->nullable(); $table->string('transaction_id', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('fakeentries'); } }