diff options
Diffstat (limited to 'docs/calendar_events.md')
| -rw-r--r-- | docs/calendar_events.md | 81 |
1 files changed, 68 insertions, 13 deletions
diff --git a/docs/calendar_events.md b/docs/calendar_events.md index 20e0428..ed5b2c5 100644 --- a/docs/calendar_events.md +++ b/docs/calendar_events.md @@ -1,13 +1,68 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [calendar_events](calendar_events) - -Column | Type | Description ---- | --- | --- -Id | BIGINT UNSIGNED | -Creator | INT UNSIGNED | -Title | VARCHAR(255) | -Description | VARCHAR(255) | -Type | TINYINT UNSIGNED | -Dungeon | INT | -Eventtime | INT UNSIGNED | -Flags | INT UNSIGNED | -Time2 | INT UNSIGNED | +# calendar\_events + +[<-Back-to:Characters](database-characters.md) + +**The \`calendar\_events\` table** + +**Structure** + +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +|----------------- |------------- |------------|-----|------|---------|-------|--------- | +| [id][1] | BIGINT | UNSIGNED | PRI | NO | 0 | | | +| [creator][2] | INT | UNSIGNED | | NO | 0 | | | +| [title][3] | VARCHAR(255) | | | NO | '' | | | +| [description][4] | VARCHAR(255) | | | NO | '' | | | +| [type][5] | TINYINT | UNSIGNED | | NO | 4 | | | +| [dungeon][6] | INT | | | NO | -1 | | | +| [eventtime][7] | INT | UNSIGNED | | NO | 0 | | | +| [flags][8] | INT | UNSIGNED | | NO | 0 | | | +| [time2][9] | INT | UNSIGNED | | NO | 0 | | | + +[1]: #id +[3]: #creator +[4]: #title +[5]: #description +[6]: #type +[7]: #dungeon +[8]: #eventtime +[9]: #flags +[10]: #time2 + +**Description of the fields** + +### id + +`field-no-description|1` + +### creator + +`field-no-description|2` + +### title + +`field-no-description|3` + +### description + +`field-no-description|4` + +### type + +`field-no-description|5` + +### dungeon + +`field-no-description|6` + +### eventtime + +`field-no-description|7` + +### flags + +`field-no-description|8` + +### time2 + +`field-no-description|9` + |
