increments('id'); $table->integer('user_id')->nullable(); $table->string('amount', 255)->nullable(); $table->string('transaction_type', 255)->nullable(); $table->text('description')->nullable(); $table->string('payment_thro', 255)->nullable(); $table->string('transaction_id', 255)->nullable(); $table->string('payment_address', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('histories'); } }