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/version.md | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 107 insertions(+), 8 deletions(-) (limited to 'docs/version.md') diff --git a/docs/version.md b/docs/version.md index 7c44159..6121fbb 100644 --- a/docs/version.md +++ b/docs/version.md @@ -1,8 +1,107 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [version](version) - -Column | Type | Description ---- | --- | --- -Core_version | varchar(120) | -Core_revision | varchar(120) | -Db_version | varchar(120) | -Cache_id | int(11) | +# version + +`Back-to:World` + +**The \`version\` table** + +Includes information on current core and database version. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

core_version

varchar(120)

signed

 

YES

NULL

 

Core revision dumped at startup

core_revision

bigint(20)

unsigned

 

YES

NULL

 

Core revision hash

db_version

varchar(120)

signed

 

YES

NULL

 

Version of world DB

script_version

varchar(120)

signed

 

YES

NULL

 

Version of scripts DB

cache_id

int(10)

signed

 

YES

0

 

Minor DB version

+ +**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` -- cgit