mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -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
|
|
);
|