# Log of name changes

**URL:** https://meta.discourse.org/t/log-of-name-changes/57519
**Category:** Feature
**Created:** [2월 17, 2017, 12:48오전 UTC](https://meta.discourse.org/t/log-of-name-changes/57519 "2017-02-17T00:48:09Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![Der-Eddy](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/der-eddy/32/74110_2.png) [@Der-Eddy](https://meta.discourse.org/u/Der-Eddy)
#### Post date: [2월 17, 2017, 12:48오전 UTC](https://meta.discourse.org/t/log-of-name-changes/57519/1 "2017-02-17T00:48:09Z")

</div>

I wanted to get a log of name changes via the [Data Explorer](https://meta.discourse.org/t/32566?silent=true) Plugin but can’t find anything useful in the db sidebar about this

Could someone head me to right direction? Or is this not being logged? (Besides the one changed by an administrator in the team log)

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2월 17, 2017, 12:56오전 UTC](https://meta.discourse.org/t/log-of-name-changes/57519/2 "2017-02-17T00:56:07Z")

</div>

This was suggested before on bbs, ATM we do not have a log, agree we should add one

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [2월 17, 2017, 2:54오전 UTC](https://meta.discourse.org/t/log-of-name-changes/57519/3 "2017-02-17T02:54:37Z")

</div>

Sure @techapj can you add this to your list when you return?

---

<div class="post-metadata">

### Author: ![techAPJ](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/techapj/32/342990_2.png) [@techAPJ](https://meta.discourse.org/u/techAPJ)
#### Post date: [2월 27, 2017, 7:30오후 UTC](https://meta.discourse.org/t/log-of-name-changes/57519/4 "2017-02-27T19:30:43Z")

</div>

Done via:

[https://github.com/discourse/discourse/commit/b32d3d66e5d846d4728ed12580f58d00f490e1c0](https://github.com/discourse/discourse/commit/b32d3d66e5d846d4728ed12580f58d00f490e1c0)

* * *

@Der-Eddy after you update to latest, here is the [Data Explorer](https://meta.discourse.org/t/32566?silent=true) query you are looking for:

```sql
SELECT id,
       acting_user_id,
       target_user_id,
       created_at,
       previous_value,
       new_value
FROM user_histories
WHERE action = 48
ORDER BY id DESC

```

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [12월 28, 2017, 3:13오전 UTC](https://meta.discourse.org/t/log-of-name-changes/57519/6 "2017-12-28T03:13:43Z")

</div>



---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [11월 30, 2018, 12:33오후 UTC](https://meta.discourse.org/t/log-of-name-changes/57519/7 "2018-11-30T12:33:14Z")

</div>

Is this the source of the incorrect name change log bug @techapj?

---

<div class="post-metadata">

### Author: ![techAPJ](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/techapj/32/342990_2.png) [@techAPJ](https://meta.discourse.org/u/techAPJ)
#### Post date: [11월 30, 2018, 1:59오후 UTC](https://meta.discourse.org/t/log-of-name-changes/57519/8 "2018-11-30T13:59:14Z")

</div>

The “log user name changes” feature was regressed in [this commit](https://github.com/discourse/discourse/commit/2503241ce54a043c08c2dcb3ef37ce2ebf65e9c5).
