Skip to content

Instantly share code, notes, and snippets.

@allenday
Last active August 2, 2018 16:49
Show Gist options
  • Save allenday/1dfde407c181eb72eafc5428736a7069 to your computer and use it in GitHub Desktop.
Save allenday/1dfde407c181eb72eafc5428736a7069 to your computer and use it in GitHub Desktop.
CREATE TABLE events (
id bigint not null primary key auto_increment,
created_at timestamp DEFAULT now(),
event character varying(255),
nick character varying(255),
ip character varying(255),
host character varying(255),
user_name character varying(255),
ident character varying(255),
server character varying(255),
channel character varying(255),
message text,
key(created_at)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment