# Where is extra\_data saved?

**URL:** https://meta.discourse.org/t/where-is-extra-data-saved/85270
**Category:** Development
**Created:** [April 13, 2018, 6:13pm UTC](https://meta.discourse.org/t/where-is-extra-data-saved/85270 "2018-04-13T18:13:01Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![NotAnonymous](https://avatars.discourse-cdn.com/v4/letter/n/f05b48/32.png) [@NotAnonymous](https://meta.discourse.org/u/NotAnonymous)
#### Post date: [April 13, 2018, 6:13pm UTC](https://meta.discourse.org/t/where-is-extra-data-saved/85270/1 "2018-04-13T18:13:01Z")

</div>

In the plugin:

> <https://github.com/discourse/discourse-oauth2-basic/blob/main/plugin.rb>

This code is used:

result = Auth::Result.new  
result.extra\_data = “some value”

Where is that extra\_data value saved? I’ve checked various tables but have yet to find it. Thought I’d check here before having to traverse them all.

Thanks

---

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [April 13, 2018, 6:58pm UTC](https://meta.discourse.org/t/where-is-extra-data-saved/85270/2 "2018-04-13T18:58:17Z")

</div>

Normally `extra_data` will be carried until the new users complete their signup process. Then it will be used [here](https://github.com/discourse/discourse-oauth2-basic/blob/ee5bca98f0854362ef5063e7960da426ecbc59fa/plugin.rb#L118).

---

<div class="post-metadata">

### Author: ![NotAnonymous](https://avatars.discourse-cdn.com/v4/letter/n/f05b48/32.png) [@NotAnonymous](https://meta.discourse.org/u/NotAnonymous)
#### Post date: [April 13, 2018, 7:54pm UTC](https://meta.discourse.org/t/where-is-extra-data-saved/85270/3 "2018-04-13T19:54:26Z")

</div>

Thanks, that helped me find what I was looking for. The data I was looking for gets stored in the plugin\_store\_rows table.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [August 26, 2020, 1:21am UTC](https://meta.discourse.org/t/where-is-extra-data-saved/85270/4 "2020-08-26T01:21:03Z")

</div>


