diff options
Diffstat (limited to 'docs/account_access.md')
| -rw-r--r-- | docs/account_access.md | 87 |
1 files changed, 81 insertions, 6 deletions
diff --git a/docs/account_access.md b/docs/account_access.md index c376b61..6508ae4 100644 --- a/docs/account_access.md +++ b/docs/account_access.md @@ -1,7 +1,82 @@ -[Database Structure](Database-Structure) > [Auth-Database](Auth-Database) > [account_access](account_access) +# account\_access -Column | Type | Description ---- | --- | --- -Id | int(10) unsigned | -Gmlevel | tinyint(3) unsigned | -RealmID | int(11) | +`Back-to:Auth` + +**The \`account\_access\` table** + +This table holds security access level for any realm in [realmlist](realmlist) table. + +**Structure** + +<table> +<colgroup> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +</colgroup> +<tbody> +<tr class="odd"> +<td><p><strong>Field</strong></p></td> +<td><p><strong>Type</strong></p></td> +<td><p><strong>Attributes</strong></p></td> +<td><p><strong>Key</strong></p></td> +<td><p><strong>Null</strong></p></td> +<td><p><strong>Default</strong></p></td> +<td><p><strong>Extra</strong></p></td> +<td><p><strong>Comment</strong></p></td> +</tr> +<tr class="even"> +<td><p><a href="#account_access-id">id</a></p></td> +<td><p>int(10)</p></td> +<td><p>unsigned</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><p> </p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="odd"> +<td><p><a href="#account_access-gmlevel">gmlevel</a></p></td> +<td><p>tinyint(3)</p></td> +<td><p>unsigned</p></td> +<td><p> </p></td> +<td><p>NO</p></td> +<td><p> </p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="even"> +<td><p><a href="#account_access-RealmID">RealmID</a></p></td> +<td><p>int(11)</p></td> +<td><p>signed</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><div class="preformatted panel" style="border-width: 1px;"> +<div class="preformattedContent panelContent"> +<pre><code>-1</code></pre> +</div> +</div></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### id + +The [account ID](account_2130004.html#account-id). + +### gmlevel + +The account security level. Different levels have access to different commands. The individual level required for a command is defined in the [command](command) table in each realm. + +### RealmID + +The [Realm ID](realmlist_2130016.html#realmlist-id). |
