blob: 454f6469cc006c3b18d6ce9869a9c3c568dc512a (
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
|
# version
[<-Back-to:World](database-world.md)
**The \`version\` table**
Includes information on current core and database version.
**Structure**
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
|---------------------|--------------|------------|-----|------|---------|-------|---------------------------------|
| [core_version][1] | VARCHAR(120) | SIGNED | | YES | NULL | | Core revision dumped at startup |
| [core_revision][2] | BIGINT | UNSIGNED | | YES | NULL | | Core revision hash |
| [db_version][3] | VARCHAR(120) | SIGNED | | YES | NULL | | Version of world DB |
| [script_version][4] | VARCHAR(120) | SIGNED | | YES | NULL | | Version of scripts DB |
| [cache_id][5] | INT | SIGNED | | YES | 0 | | Minor DB version |
[1]: #core_version
[2]: #core_revision
[3]: #db_version
[4]: #script_version
[5]: #cache_id
**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 .58**
### script\_version
`Version of scripts DB`
### cache\_id
`Minor DB version. Example: 58`
|