blob: e79b0ceba6e323fe409d5481f349d6966991bfb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# guild\_bank\_item
[<-Back-to:Characters](database-characters.md)
**The \`guild\_bank\_item\` table**
This table holds all item information for items that are stored in the guild bank.
**Structure**
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
| -------------- | ------- | ---------- | --- | ---- | ------- | ----- | ------- |
| [guildid][1] | INT | UNSIGNED | PRI | NO | 0 | | |
| [TabId][2] | TINYINT | UNSIGNED | PRI | NO | 0 | | |
| [SlotId][3] | TINYINT | UNSIGNED | PRI | NO | 0 | | |
| [item_guid][4] | INT | UNSIGNED | | NO | 0 | | |
[1]: #guildid
[2]: #tabid
[3]: #slotid
[4]: #itemguid
**Description of the fields**
### guildid
The guild ID who owns the bank. See [guild.guildid](guild#guildid).
### TabId
The tab ID where the item is currently placed in. See [guild\_bank\_tab.TabId](guild_bank_tab#tabid).
### SlotId
The slot that the item is placed in in the tab.
### item\_guid
The item guid. See [item\_instance.guid](item_instance#guid).
|