mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-20 09:38:21 +00:00
SQL
This commit is contained in:
@@ -0,0 +1,11 @@
|
|||||||
|
CREATE TABLE `character_kick_events` (
|
||||||
|
`Id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
|
`Name` VARCHAR(64) NOT NULL,
|
||||||
|
`Reason` TEXT NOT NULL,
|
||||||
|
`Created` TIMESTAMP NOT NULL DEFAULT '',
|
||||||
|
PRIMARY KEY (`Id`),
|
||||||
|
INDEX `Name` (`Name`),
|
||||||
|
INDEX `Created` (`Created`)
|
||||||
|
)
|
||||||
|
ENGINE=InnoDB
|
||||||
|
;
|
||||||
Reference in New Issue
Block a user