id(); $table->string('username', 64)->unique(); $table->string('password')->nullable(); $table->string('mobile')->index()->nullable(); $table->string('email')->index()->nullable(); $table->string('mnemonic')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }