landsandboat/sql/char_flags.sql

14 lines
523 B
MySQL
Raw Permalink Normal View History

SET FOREIGN_KEY_CHECKS=0;
-- ------------------------------
-- Table structure for char_flags
-- ------------------------------
DROP TABLE IF EXISTS `char_flags`;
CREATE TABLE `char_flags` (
`charid` int(10) unsigned NOT NULL,
`disconnecting` smallint(3) NOT NULL DEFAULT '0',
`gmModeEnabled` smallint(3) NOT NULL DEFAULT '0',
`gmHiddenEnabled` smallint(3) NOT NULL DEFAULT '0',
2025-07-24 23:14:14 -06:00
`muted` boolean NOT NULL DEFAULT FALSE,
PRIMARY KEY (`charid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;