From c681fd4d66521fe6bee35bb2fbd9b5855fca3beb Mon Sep 17 00:00:00 2001 From: Walter Pagani Date: Thu, 7 Jan 2021 10:30:03 -0300 Subject: docs: Converting from HTML to Markdown part #4 (#333) --- docs/command.md | 90 ++++++++++++++++----------------------------------------- 1 file changed, 25 insertions(+), 65 deletions(-) (limited to 'docs/command.md') diff --git a/docs/command.md b/docs/command.md index fd7adfc..3505a5b 100644 --- a/docs/command.md +++ b/docs/command.md @@ -1,73 +1,33 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [command](command) +# command -

The `command` table

+[<-Back-to:World](database-world.md) -

Holds help and security information for commands. This table does NOT create new commands, it only sets / overrides security and provides help.

+**The `command` table** -

Structure

+Holds help and security information for commands. This table does NOT create new commands, it only sets / overrides security and provides help. - ---------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field

Type

Attributes

Key

Null

Default

Extra

Comment

name

varchar(50)

signed

PRI

NO

NULL

security

tinyint(3)

unsigned

NO

0

help

longtext

signed

YES

NULL

+**Structure** -

Description of the fields

+| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +|---------------|-------------|------------|-----|------|---------|-------|---------| +| [name][1] | varchar(50) | signed | PRI | NO | NULL | | | +| [security][2] | tinyint(3) | unsigned | | NO | 0 | | | +| [help][3] | longtext | signed | | YES | NULL | | | -

name

-

The name of the command.

+[1]: #name +[2]: #security +[3]: #help -

security

-

The security level required to use the command. Corresponds with account_access.gmlevel in the realm database.

+**Description of the fields** -

help

-

The help text displayed by the .help command.

+### name + +The name of the command. + +### security + +The security level required to use the command. Corresponds with account_access.gmlevel in the realm database. + +### help + +The help text displayed by the .help command. -- cgit