blob: 6121fbb49693f679cad091c381a8ce405fe98801 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# version
`Back-to:World`
**The \`version\` table**
Includes information on current core and database version.
**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="#version-core_version">core_version</a></p></td>
<td><p>varchar(120)</p></td>
<td><p>signed</p></td>
<td><p> </p></td>
<td><p>YES</p></td>
<td><p>NULL</p></td>
<td><p> </p></td>
<td><p>Core revision dumped at startup</p></td>
</tr>
<tr class="odd">
<td><p><a href="#version-core_revision">core_revision</a></p></td>
<td><p>bigint(20)</p></td>
<td><p>unsigned</p></td>
<td><p> </p></td>
<td><p>YES</p></td>
<td><p>NULL</p></td>
<td><p> </p></td>
<td><p>Core revision hash</p></td>
</tr>
<tr class="even">
<td><p><a href="#version-db_version">db_version</a></p></td>
<td><p>varchar(120)</p></td>
<td><p>signed</p></td>
<td><p> </p></td>
<td><p>YES</p></td>
<td><p>NULL</p></td>
<td><p> </p></td>
<td><p>Version of world DB</p></td>
</tr>
<tr class="odd">
<td><p><a href="#version-script_version">script_version</a></p></td>
<td><p>varchar(120)</p></td>
<td><p>signed</p></td>
<td><p> </p></td>
<td><p>YES</p></td>
<td><p>NULL</p></td>
<td><p> </p></td>
<td><p>Version of scripts DB</p></td>
</tr>
<tr class="even">
<td><p><a href="#version-cache_id">cache_id</a></p></td>
<td><p>int(10)</p></td>
<td><p>signed</p></td>
<td><p> </p></td>
<td><p>YES</p></td>
<td><p>0</p></td>
<td><p> </p></td>
<td><p>Minor DB version</p></td>
</tr>
</tbody>
</table>
**Description of the fields**
### core\_version
Full text description from the core version your server is currently running on.
Example: TrinityCore rev. 8e48ef7863c5 2015-03-22 01:28:02 +0100 (6.x branch) (Win64, Release)
### core\_revision
Core Revision Hash your server is currently running on, i.e. **Unknown** or **8e48ef7863c5**
### db\_version
Database Version your server is currently running on. Example: **TDB 335.58**
### script\_version
`Version of scripts DB`
### cache\_id
`Minor DB version. Example: 58`
|