From a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3 Mon Sep 17 00:00:00 2001 From: FrancescoBorzi Date: Mon, 25 Feb 2019 19:24:20 +0100 Subject: Import DB wiki from TC 335 --- docs/character_account_data.md | 104 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 96 insertions(+), 8 deletions(-) (limited to 'docs/character_account_data.md') diff --git a/docs/character_account_data.md b/docs/character_account_data.md index 1fdc305..dad1f0c 100644 --- a/docs/character_account_data.md +++ b/docs/character_account_data.md @@ -1,8 +1,96 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [character_account_data](character_account_data) - -Column | Type | Description ---- | --- | --- -Guid | int(10) unsigned | -Type | tinyint(3) unsigned | -Time | int(10) unsigned | -Data | blob | +# character\_account\_data + +`Back-to:Characters` + +**The \`character\_account\_data\` table** + +Contains data about character settings. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

guid

int(10)

unsigned

PRI

NO

0

 

 

type

int(3)

unsigned

PRI

NO

0

 

 

time

bigint(10)

unsigned

 

NO

0

 

 

data

blob

signed

 

NO

 

 

 

+ +**Description of the fields** + +### guid + +The character global unique identifier. See [Characters.guid](2129969.html#characters(table)-guid) + +### type + +- 1 = Config cache per character +- 3 = Bindings cache per character +- 5 = Macros cache per character +- 6 = Layout cache per character +- 7 = Chat cache per character + +### time + +Time of last modification in Unixtime + +### data + +No description can be written. You just must understand it's data. -- cgit