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"],
|
||||
"fetch_further_information" => ["fetch_further_information"],
|
||||
"ffi_keyword_blacklist" => ["ffi_keyword_blacklist"],
|
||||
"parent-uid" => ["user", "parent-uid"],
|
||||
"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"
|
||||
"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"],
|
||||
"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"],
|
||||
"account-type" => ["user", "account-type"],
|
||||
"prvnets" => ["user", "prvnets"],
|
||||
"account_removed" => ["user", "account_removed"],
|
||||
"hidewall" => ["user", "hidewall"],
|
||||
"login_date" => ["user", "login_date"],
|
||||
"register_date" => ["user", "register_date"],
|
||||
"verified" => ["user", "verified"],
|
||||
"maxreq" => ["user", "maxreq"],
|
||||
"expire" => ["user", "expire"],
|
||||
"expire_notification_sent" => ["user", "expire_notification_sent"],
|
||||
"account_removed" => ["user", "account_removed"],
|
||||
"account_expired" => ["user", "account_expired"],
|
||||
"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"],
|
||||
"net-publish" => ["profile", "net-publish"],
|
||||
"hide-friends" => ["profile", "hide-friends"],
|
||||
|
|
Loading…
Reference in a new issue