diff options
| author | FrancescoBorzi <borzifrancesco@gmail.com> | 2019-02-25 19:24:20 +0100 |
|---|---|---|
| committer | FrancescoBorzi <borzifrancesco@gmail.com> | 2019-02-25 19:24:20 +0100 |
| commit | a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3 (patch) | |
| tree | 91e0cde00f6f27b730b0df3f4338fcf99fa8447a /docs/account_access.md | |
| parent | d8d1823802ded97300fa57405d80b16736603489 (diff) | |
| download | wiki-a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3.tar.gz wiki-a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3.tar.bz2 wiki-a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3.zip | |
Import DB wiki from TC 335
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). |
