mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
6 lines
128 B
SQL
6 lines
128 B
SQL
CREATE TABLE IF NOT EXISTS `ircd_log` (
|
|
`time` datetime NOT NULL,
|
|
`type` varchar(50) NOT NULL,
|
|
`message` text NOT NULL
|
|
);
|