mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
11 lines
215 B
SQL
11 lines
215 B
SQL
DROP TABLE IF EXISTS `profanity_list`;
|
|
|
|
CREATE TABLE `profanity_list` (
|
|
`word` VARCHAR(16) NOT NULL
|
|
)
|
|
COLLATE='latin1_swedish_ci'
|
|
ENGINE=InnoDB
|
|
;
|
|
|
|
REPLACE INTO `command_settings` VALUES ('profanity', 150, 'prof');
|