extra_data 保存在哪里?

在插件中:

使用了以下代码:

result = Auth::Result.new
result.extra_data = “some value”

该 extra_data 值保存在哪里?我已经检查了多个表,但尚未找到。在遍历所有表之前,我想先在这里确认一下。

谢谢

Normally extra_data will be carried until the new users complete their signup process. Then it will be used here.

Thanks, that helped me find what I was looking for. The data I was looking for gets stored in the plugin_store_rows table.