¿Dónde se guarda extra_data?

En el plugin:

Se utiliza este código:

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

¿Dónde se guarda ese valor de extra_data? He revisado varias tablas, pero aún no lo he encontrado. Pensé en consultar aquí antes de tener que recorrerlas todas.

Gracias

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.