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/game_event_pool.md | 71 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 66 insertions(+), 5 deletions(-) (limited to 'docs/game_event_pool.md') diff --git a/docs/game_event_pool.md b/docs/game_event_pool.md index bc6e5a7..3e10ff5 100644 --- a/docs/game_event_pool.md +++ b/docs/game_event_pool.md @@ -1,6 +1,67 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [game_event_pool](game_event_pool) +# game\_event\_pool -Column | Type | Description ---- | --- | --- -EventEntry | tinyint(4) | -Pool_entry | mediumint(8) unsigned | +`Back-to:World` + +**The \`game\_event\_pool\` table** + +This table determines if a given pool is active for a given game event. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

eventEntry

tinyint(3)

signed

 

NO

 

 

Entry of the game event. Put negative entry to remove during event.

pool_entry

mediumint(8)

unsigned

PRI

NO

0

Unique

Id of the pool

+ +**Description of the fields** + +### eventEntry + +This is the ID of the event. + +- +event adds the pool +- -event removed the pool + +### pool\_entry + +This is ID of the pool that you want either active or removed for the event. -- cgit