landsandboat/sql/audit_gm.sql
Ixion c460a89139 Ixion is Come!
- Rebranding.
- Migrate to GitLab.
- Add support for database updates when using Docker.
- Give purpose to version.h (adjust minor version with client updates).
- Add an in-game `!ver` command.
- Remove references to AGPL.
2021-04-17 18:24:14 -04:00

12 lines
322 B
SQL

--
-- Table structure for table `audit_gm`
--
DROP TABLE IF EXISTS `audit_gm`;
CREATE TABLE `audit_gm` (
`date_time` datetime NOT NULL,
`gm_name` varchar(16) NOT NULL,
`command` varchar(40) NOT NULL,
`full_string` varchar(200) NOT NULL,
PRIMARY KEY (`date_time`,`gm_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;