id(); $table->string('nickname')->nullable()->comment('昵称'); $table->string('mobile')->nullable()->comment('手机号'); $table->string('avatar')->nullable()->comment('头像'); $table->string('openid')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('wechat_users'); } };