Cleaned up user table order in query
This commit is contained in:
parent
ee3a724b41
commit
efa1351ac6
1 changed files with 28 additions and 13 deletions
|
@ -133,30 +133,45 @@ return [
|
||||||
"notify_new_posts" => ["notify_new_posts"],
|
"notify_new_posts" => ["notify_new_posts"],
|
||||||
"fetch_further_information" => ["fetch_further_information"],
|
"fetch_further_information" => ["fetch_further_information"],
|
||||||
"ffi_keyword_blacklist" => ["ffi_keyword_blacklist"],
|
"ffi_keyword_blacklist" => ["ffi_keyword_blacklist"],
|
||||||
|
"parent-uid" => ["user", "parent-uid"],
|
||||||
"guid" => ["user", "guid"],
|
"guid" => ["user", "guid"],
|
||||||
"theme" => ["user", "theme"],
|
|
||||||
"language" => ["user", "language"],
|
|
||||||
"email" => ["user", "email"],
|
|
||||||
"uprvkey" => ["user", "prvkey"],
|
|
||||||
"upubkey" => ["user", "pubkey"],
|
|
||||||
"timezone" => ["user", "timezone"],
|
|
||||||
"nickname" => ["user", "nickname"], /// @todo Replaces all uses of "nickname" with "nick"
|
|
||||||
"username" => ["user", "username"], /// @todo Replaces all uses of "username" with "name"
|
"username" => ["user", "username"], /// @todo Replaces all uses of "username" with "name"
|
||||||
|
"nickname" => ["user", "nickname"], /// @todo Replaces all uses of "nickname" with "nick"
|
||||||
|
"email" => ["user", "email"],
|
||||||
|
"openid" => ["user", "openid"],
|
||||||
|
"timezone" => ["user", "timezone"],
|
||||||
|
"language" => ["user", "language"],
|
||||||
|
"register_date" => ["user", "register_date"],
|
||||||
|
"login_date" => ["user", "login_date"],
|
||||||
|
"default-location" => ["user", "default-location"],
|
||||||
|
"allow_location" => ["user", "allow_location"],
|
||||||
|
"theme" => ["user", "theme"],
|
||||||
|
"upubkey" => ["user", "pubkey"],
|
||||||
|
"uprvkey" => ["user", "prvkey"],
|
||||||
"sprvkey" => ["user", "sprvkey"],
|
"sprvkey" => ["user", "sprvkey"],
|
||||||
"spubkey" => ["user", "spubkey"],
|
"spubkey" => ["user", "spubkey"],
|
||||||
|
"verified" => ["user", "verified"],
|
||||||
|
"blockwall" => ["user", "blockwall"],
|
||||||
|
"hidewall" => ["user", "hidewall"],
|
||||||
|
"blocktags" => ["user", "blocktags"],
|
||||||
|
"unkmail" => ["user", "unkmail"],
|
||||||
|
"cntunkmail" => ["user", "cntunkmail"],
|
||||||
|
"notify-flags" => ["user", "notify-flags"],
|
||||||
"page-flags" => ["user", "page-flags"],
|
"page-flags" => ["user", "page-flags"],
|
||||||
"account-type" => ["user", "account-type"],
|
"account-type" => ["user", "account-type"],
|
||||||
"prvnets" => ["user", "prvnets"],
|
"prvnets" => ["user", "prvnets"],
|
||||||
"account_removed" => ["user", "account_removed"],
|
"maxreq" => ["user", "maxreq"],
|
||||||
"hidewall" => ["user", "hidewall"],
|
|
||||||
"login_date" => ["user", "login_date"],
|
|
||||||
"register_date" => ["user", "register_date"],
|
|
||||||
"verified" => ["user", "verified"],
|
|
||||||
"expire" => ["user", "expire"],
|
"expire" => ["user", "expire"],
|
||||||
"expire_notification_sent" => ["user", "expire_notification_sent"],
|
|
||||||
"account_removed" => ["user", "account_removed"],
|
"account_removed" => ["user", "account_removed"],
|
||||||
"account_expired" => ["user", "account_expired"],
|
"account_expired" => ["user", "account_expired"],
|
||||||
"account_expires_on" => ["user", "account_expires_on"],
|
"account_expires_on" => ["user", "account_expires_on"],
|
||||||
|
"expire_notification_sent" => ["user", "expire_notification_sent"],
|
||||||
|
"def_gid" => ["user", "def_gid"],
|
||||||
|
"allow_cid" => ["user", "allow_cid"],
|
||||||
|
"allow_gid" => ["user", "allow_gid"],
|
||||||
|
"deny_cid" => ["user", "deny_cid"],
|
||||||
|
"deny_gid" => ["user", "deny_gid"],
|
||||||
|
"openidserver" => ["user", "openidserver"],
|
||||||
"publish" => ["profile", "publish"],
|
"publish" => ["profile", "publish"],
|
||||||
"net-publish" => ["profile", "net-publish"],
|
"net-publish" => ["profile", "net-publish"],
|
||||||
"hide-friends" => ["profile", "hide-friends"],
|
"hide-friends" => ["profile", "hide-friends"],
|
||||||
|
|
Loading…
Reference in a new issue