diff options
Diffstat (limited to 'docs/account_data.md')
| -rw-r--r-- | docs/account_data.md | 102 |
1 files changed, 94 insertions, 8 deletions
diff --git a/docs/account_data.md b/docs/account_data.md index 0f3126d..11e9ff4 100644 --- a/docs/account_data.md +++ b/docs/account_data.md @@ -1,8 +1,94 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [account_data](account_data) - -Column | Type | Description ---- | --- | --- -AccountId | int(10) unsigned | -Type | tinyint(3) unsigned | -Time | int(10) unsigned | -Data | blob | +# account\_data + +`Back-to:Characters` + +**The \`account\_data\` table** + +Contains data about client account and settings. + +**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_data-account">account</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>0</p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="odd"> +<td><p><a href="#account_data-type">type</a></p></td> +<td><p>tinyint(3)</p></td> +<td><p>unsigned</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><p>0</p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="even"> +<td><p><a href="#account_data-time">time</a></p></td> +<td><p>int(10)</p></td> +<td><p>unsigned</p></td> +<td><p> </p></td> +<td><p>NO</p></td> +<td><p>0</p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="odd"> +<td><p><a href="#account_data-data">data</a></p></td> +<td><p>blob</p></td> +<td><p>signed</p></td> +<td><p> </p></td> +<td><p>NO</p></td> +<td><p> </p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### account + +[Account.id](account_2130004.html#account-id). + +### type + +- 0 = Global-account config cache +- 2 = Global-account bindings cache +- 4 = Global-account macros cache + +### time + +Time of last modification in Unixtime + +### data + +No description can be written. You just must understand it's data. |
