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