inspircd/docs/sql/log_sql/pgsql.sql
Sadie Powell c382faf9c9 Rewrite the entire logging system.
- Much cleaner API for writing to the log.
- Adds support for stderr and stdout logging to the core.
- Adds support for sql and syslog logging in modules.
2022-05-01 22:07:04 +01:00

7 lines
102 B
SQL

CREATE TABLE IF NOT EXISTS "ircd_log" (
"time" datetime,
"type" varchar(50),
"message" text
);