inspircd/docs/sql/log_sql/mysql.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
);